sublime 快键
Keyboard Shortcuts - Windows/Linux
Warning
This topic is a draft and may contain wrong information.
Editing
| Keypress | Command |
|---|---|
| Ctrl + X | Cut line |
| Ctrl + ↩ | Insert line after |
| Ctrl + ⇧ + ↩ | Insert line before |
| Ctrl + ⇧ + ↑ | Move line/selection up |
| Ctrl + ⇧ + ↓ | Move line/selection down |
| Ctrl + L | Select line - Repeat to select next lines |
| Ctrl + D | Select word - Repeat select others occurrences |
| Ctrl + M | Jump to closing parentheses Repeat to jump to opening parentheses |
| Ctrl + ⇧ + M | Select all contents of the current parentheses |
| Ctrl + ⇧ + K | Delete Line |
| Ctrl + KK | Delete from cursor to end of line |
| Ctrl + K + ⌫ | Delete from cursor to start of line |
| Ctrl + ] | Indent current line(s) |
| Ctrl + [ | Un-indent current line(s) |
| Ctrl + ⇧ + D | Duplicate line(s) |
| Ctrl + J | Join line below to the end of the current line |
| Ctrl + / | Comment/un-comment current line |
| Ctrl + ⇧ + / | Block comment current selection |
| Ctrl + Y | Redo, or repeat last keyboard shortcut command |
| Ctrl + ⇧ + V | Paste and indent correctly |
| Ctrl + Space | Select next auto-complete suggestion |
| Ctrl + U | soft undo; jumps to your last change before undoing change when repeated |
| Alt + ⇧ + W | Wrap Selection in html tag |
| Alt + . | Close current html tag |
Windows
| Ctrl + Alt + Up | Column selection up |
| Ctrl + Alt + Down | Column selection down |
Linux
| Alt + ⇧ + Up | Column selection up |
| Alt + ⇧ + Down | Column selection down |
Navigation/Goto Anywhere
| Keypress | Command |
|---|---|
| Ctrl + P | Quick-open files by name |
| Ctrl + R | Goto symbol |
| Ctrl + ; | Goto word in current file |
| Ctrl + G | Goto line in current file |
General
| Keypress | Command |
|---|---|
| Ctrl + ⇧ + P | Command prompt |
| Ctrl + KB | Toggle side bar |
| Ctrl + ⇧ + Alt + P | Show scope in status bar |
Find/Replace
| Keypress | Command |
|---|---|
| Ctrl + F | Find |
| Ctrl + H | Replace |
| Ctrl + ⇧ + F | Find in files |
Tabs
| Keypress | Command |
|---|---|
| Ctrl + ⇧ + t | Open last closed tab |
| Ctrl + PgUp | Cycle up through tabs |
| Ctrl + PgDn | Cycle down through tabs |
| Ctrl + ⇆ | Find in files |
| Ctrl + W | Close current tab |
| Alt + [NUM] | Switch to tab number [NUM] where [NUM] <= number of tabs |
Split window
| Keypress | Command |
|---|---|
| Alt + ⇧ + 1 | Revert view to single column |
| Alt + ⇧ + 2 | Split view into two columns |
| Alt + ⇧ + 3 | Split view into three columns |
| Alt + ⇧ + 4 | Split view into four columns |
| Alt + ⇧ + 5 | Set view to grid (4 groups) |
| Alt + ⇧ + 8 | Split view into two rows |
| Ctrl + [NUM] | Jump to group where num is 1-4 |
| Ctrl + ⇧ + [NUM] | Move file to specified group where num is 1-4 |
Bookmarks
| Keypress | Command |
|---|---|
| Ctrl + F2 | Toggle bookmark |
| F2 | Next bookmark |
| ⇧ + F2 | Previous bookmark |
| Ctrl + ⇧ + F2 | Clear bookmarks |
Text manipulation
| Keypress | Command |
|---|---|
| Ctrl + KU | Transform to Uppercase |
| Ctrl + KL | Transform to Lowercase |
sublime 快键的更多相关文章
- idea 快键键
debug快键键 F9 resume programe 恢复程序 Alt+F10 show execution point 显示执行断点 F8 Step Over 相当于eclipse的f6 跳到下一 ...
- Eclipse 快键键(持续更新)
本人抛弃一些简单常见的快键键,例如 ctrl+c ,+v ,+z之类的 1.ctrl+d 删除一整行 2.ctrl+f 搜索 3.光标选中几行,ctrl+alt+↓ 向下复制选中的那几行 4.光标 ...
- sublime常用快键键
---------------最常用的1.新建文件-输入"html:xt"后 按"Ctrl+E键"或 "tab键" ,可快速生成xhtml ...
- sublime自定义快键键不行,
其实sublime自身就有格式化命令,就不再安装插件,位置在[Edit]->[Line]->[Reindent]但这个默认的命令没有快捷键,就重新定义了一下,想用习惯了的eclipse快捷 ...
- Sublime text 3 快键方式汇总 及 主题应用
Sublime Text 3 快捷键汇总 Sublime Text 3是款非常实用代码编辑神器,但是想要用任何一款软件,掌握一些快捷键还是很有必要的. 选择类 Ctrl+D 选中光标所占的文本,继续操 ...
- sublime text 快键键
sublime text 的快捷键ctrl+l 选择整行(按住-继续选择下行)ctrl+shift+k ...
- 记一下webstorm快键键
#####新建文件````ctrl+alt+insert````#####结构速写````div>ul>li*4>p | div>h1+p | input:text | div ...
- vi简单快键命令
进入vi的命令 vi filename :打开或新建文件,并将光标置于第一行首 vi +n filename :打开文件,并将光标置于第n行首 vi + filename :打开文件,并将光标置于最后 ...
- mac技巧之常用的快键键
1.修改文件名 选中文件按return键即可修改文件名. 2.文件预览 选中文件按照空格键即可实现文件的预览(并不是打开文件) 3.任务之间进行切换 command+tab 4.复制文件 推动文件按照 ...
随机推荐
- 使用bootstrapvalidator的remote验证经验
这里需要说一下,bootstrapvalidator的帮助文档写的比较简单,对于remote验证器的说明更是如此,在经历多方测试之后才明白如何使用这个验证器. 一个典型的ajax验证代码如下: 服务端 ...
- 1203.1——条件语句 之 if语句
用if语句可以构成分支结构.它根据给定的条件进行判断,以决定执行某个分支程序段.C语言的if语句有三种基本形式. 语句的三种形式 1) 第一种形式为基本形式:if if(表达式) 语句其 ...
- (转) Name visibility
Scopes Named entities, such as variables, functions, and compound types need to be declared before b ...
- (转) 学习C++ -> 类(Classes)的定义与实现
学习C++ -> 类(Classes)的定义与实现 一."类" 的介绍 在C++中, 用 "类" 来描述 "对象", 所谓的&q ...
- perl6之'Hello World'
安装完perl6之后,当然是要写一下Hello World了. 因为perl6的脚本一般都很短小,所以用不着很笨重的IDE之类的东西,我们用VIM,sublime text这种小型的编辑器 来开始pe ...
- WPF下YUV播放的D3D解决方案
http://blog.csdn.net/yangyy9611/article/details/17464133
- 让PHP程序永远在后台运行
PHP里有个函数很有用.这是在最近的开发中才逐渐用到的. int ignore_user_abort ( [bool setting] ) 这个函数的作用是指示服务器端在远程客户端关闭连接后是否继续执 ...
- layer 模版使用
function doReply(id){ var url = "/Feedback/Feedback/reply"; var content = $("#reply_c ...
- Hopscotch(POJ 3050 DFS)
Hopscotch Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 2845 Accepted: 1995 Descrip ...
- oracle安装报错检查操作系统版本: 必须是5.1 or 5.2。实际为 6.1未通过
oracle安装时报错,提示:操作系统版本: 必须是5.1 or 5.2.实际为 6.1未通过 , 解决方案 这里只认证5.1.5.2的OS版本,但是我的win server 2008系统版本为6.1 ...