多字节单词分隔符
它对应着移动到光标处每个单词的位置。
标签 japanese
详细信息
安装次数
- 总计 283
- Win 186
- Mac 70
- Linux 27
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
MultiByteWordSeparators
关于
MultiByteWordSeparators适用于Sublime Text 3。它对应着移动到光标处每个单词的位置。
安装
这很简单。使用软件包控制。
搜索MultibyteWordSeparators
键盘绑定
[ { "keys": ["ctrl+left"], "command": "multibyte_word_separators", "args": {"forward": false}}, { "keys": ["ctrl+right"], "command": "multibyte_word_separators", "args": {"forward": true}}, // selected { "keys": ["ctrl+shift+left"], "command": "sel_multibyte_word_separators", "args": {"forward": false}}, { "keys": ["ctrl+shift+right"], "command": "sel_multibyte_word_separators", "args": {"forward": true}} ]
用法
首选项 > 多字节单词分隔符 > 设置 - 用户
"设置 - 默认"的全部文本复制到设置 - 用户。
- 十六进制数字的Unicode
- 正则表达式
- 例如
- 添加空格组。它只移动光标到空格上。
{ "pattern" : { ... - "latin": "[\u0030-\u0039\u0041-\u005A\u0061-\u007A\u0020\u005F]+", + "latin": "[\u0030-\u0039\u0041-\u005A\u0061-\u007A\u005F]+", "latinSymbol": "[\u0021-\u002F\u003A-\u0040\u005B-\u005E\u0060\u00A5\u007B-\u007E\u203E]+", "czeroControls": "[\u0000-\u0009\u000B\u000C\u000E-\u001F]+", "controlCharacters": "[\u000A\u000D]+", + "space": "[\u0020]+" } }