symbolab中文使用方法

使用PP助手
开发者:来自Google Play
下载数学计算Symbolab的还喜欢下载
你可能是要下载
PP助手为您下载提速
阿里巴巴旗下手机助手5,518被浏览309,696分享邀请回答{
"folders":
"path": "path_to_project",
"folder_exclude_patterns": ["img","x-library"]
"settings":
"translate_tabs_to_spaces": true,
"tab_size": 4
配置移动化最好全部定义在 `path_to_sublime/Packages/User/` 目录中,然后用一个 repo 保存它们,这样随时可以同步到你的所有设备上,并且不同的操纵系统有不同的文件来进行配置。终端调用定义一个链接:ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/subl
然后任何时候可以调用了,比如在 sublime 中打开当前目录所有文件:subl .
Snippets自定义一些贴心的代码片断是必须的。这个也保存到在 User 目录比较好,扩展名为 `.sublime-snippet` 。比如定义一个 `ci` 为 `` ,保存在 User/js-snippets/console-info.sublime-snippet :&snippet&
&content&&![CDATA[console.info(${1})]]&&/content&
&tabTrigger&ci&/tabTrigger&
&scope&source.js&/scope&
&description&console.info&/description&
&/snippet&
Buildcmd + b 是编译,比如我添加了直接调用 node.js ,这样测试一些函数最方便了,不用打开浏览器。文件名参考,User/node.sublime-build:{
"cmd": ["/usr/local/bin/node", "$file"],
"selector": "source.js"
主题可以兼容使用 TextMate 的主题。现在我最喜欢的主题是 Solarized Light 了,字体是 Menlo 或 Monaco 。宏需要批量热键操作的话,可以定义宏: 扩展宏无法达到要求时,定义一个扩展:1) 2) 扩展管理必装的是 Sublime Package Control: 然后可以随时查询,安装其他扩展,一些推荐的: Prefixr、Alignment、HexViewer、JSFormat、Zen Coding(已更名,叫 Emmet)、FileDiffs、Color Picker---- update 额外配置推荐三个特别有用的:"default_line_ending": "unix",
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
作用分别为:default_line_ending 保证为 unix 风格的换行符(跨平台工作时特有用)。trim_trailing_white_space_on_save 保证在文件保存时,移除每行结尾多余空格(升级过 JSHint 之后特有用)。ensure_newline_at_eof_on_save 保证在文件保存时,在结尾插入一个换行符(让 git 提交时不生产额外的 diff)。Goto一共有四种 Goto :cmd+p
文件定位cmd+;
词语定位 #cmd+r
函数定位 @cmd+g
行号定位 :第一种可以和其余三种搭配使用,比如 cmd+p 后,输入 util@parse 可以即时查询名字带 util 的文件中,以 parse 开头的函数。Lint 扩展SublimeLinter 试过多个同类扩展之后发现它最好用,并且支持多种语言、不需要热键——它在输入时就自动校验。多文件中搜索Where 中可以使用通配符,比如 *.js, *.less 将在项目中所有后缀为 js 和 less 的文件中搜索。86945 条评论分享收藏感谢收起Edit(编辑)
?[向左缩进 | Left indent?]向右缩进 | Right Indent??↑与上一行互换(超实用!)| Swap line up??↓与下一?行互换?(超实用!)| Swap line down??D复制粘贴当前行(减少多余的粘贴)| Duplicate line?J拼接行(css格式化时挺有用) | join lines?←去往行的开头 | Beginning of line?→去往行末尾 | End of line??/块注释 | Toggle comment block?K从光标开始的地方删除到行尾 | Delete to end??K删除一整行 | delete line?T相邻单词互换位置,在','前试用,有惊喜(很有趣)| Transpose???向光标前插入一行|insert line before??向光标后插入一行|inter line after??T插入特殊字符|Special characters?D向后删除(很怪异的操作,不过感觉很酷炫)Selection(光标选中)
?D选中相同的词 | Expand selection to words??G多重文本光标选中(再也不用? D一个一个的找啦)| Expand all selection to words?L选中一行|Expand selection to lineEsc单选(取消多重选择)|Single selection,Cancel multiple selections??↑一行一行向上选中|Add previous line??↓一行一行向下选中|Add next line??L将选中的区域分割成多行选中状态(多光标操作状态)|Split into lines?+拖动鼠标多重光标选中??J已缩进层级为依据,一层层向外选中|Expand selection to indentation??M将匹配括号中的内容选中|Expand selection to bracketsFind(查找)
?F普通查找|Find?G查找下一个|Find next??F在文件夹中查找| Find in files??E缓存用于替换的内容,方便之后的替换|Use selection for replace?E缓存用于查找的内容,方便之后的查找|Use selection for find??E一个接一个往下替换|Replace nextView(视图)
推荐使用Origami插件,可以随意对sublime进行分割Go to(跳转/定位)
?P跳转文件(很方便)| Go to anything?R定位文件中的方法@| Go to symbol?G定位文件中的行号:| Go to line?M定位匹配的括号 | Jump to matching bracket?F2设置/取消定位标记| Toggle bookmarkF2跳转到定位标记处 | Next bookmark??F2清除所有定位标记| Clear all bookmarks??→下一个打开的文件| Next fileProject(工程)
??P在保存过的工程中切换,随意变换工程环境|Switch project windowGeneral(通用)
??P 打开命令行| Command prompt?K, ?B隐藏/打开 侧边栏| Toggle side barTabs(标签栏)
??t 打开最后一次关闭的文件|Open last closed tab^Tab 循环遍历tab|Cycle up through tabs^?Tab 反方向循环遍历tab|Cycle down through tabs_____________________________________实用插件Sublime里有些插件十分强大,在这里我推荐我最喜欢的几个:首推Emmet:这个插件内置的功能很强大,它的快捷键详细说明如下:操作、编辑HTML:快速生成html语法篇:理解记忆后,能增加很多开发效率。Modific: Highlight lines changed since the last commit 无论git,还是svn 只要一保存,都能标出代码的改动状态,超赞Tag: HTML格式化jsformat: javascript格式化Origami:Sublime视图设置_____________________________________代码片段常用的都在这里能找到,有其它需要就自己配吧:总结:这里面有些快捷键单兵作战能力可能不强,但如果你能灵活使用,将它们配合起来,能发挥很大的威力。可能你会觉得快捷键有些多,记不下来,但是只要坚持使用,把它变为习惯,你的开发效率肯定会得到提高的!希望对大家有帮助,有疑问的可以单独私信。尾声:windows下的快捷键一览
Alt+R : 开启正则表达式功能
Alt+Enter: 找到匹配目标后全部选择
Ctrl+R:前往 method(mac下?R)
Ctrl+M:跳转到对应括号
按Ctrl+Shift+上下键,可替换行
Ctrl+D:选择单词,重复可增加选择下一个相同的单词
Ctrl+L:选择行,重复可依次增加选择下一行
Ctrl+Shift+P:打开命令面板
Ctrl+P:搜索项目中的文件(mac下?P),在里面输入:
admi@auto 可以定位到相应文件夹(admin.html)下的相应方法(auto)。
Ctrl+G:跳转到第几行
Ctrl+W:关闭当前打开文件
Ctrl+Shift+W:关闭所有打开文件
Ctrl+Shift+V:粘贴并格式化
Ctrl+Shift+L:选择多行
Ctrl+Shift+Enter:在当前行前插入新行
Ctrl+X:删除当前行
Ctrl+U:软撤销,撤销光标位置
Ctrl+J:选择标签内容
Ctrl+F:查找内容
Ctrl+Shift+F:查找并替换
Ctrl+H:替换
Ctrl+N:新建窗口
Ctrl+K+B:开关侧栏
Ctrl+Shift+M:选中当前括号内容,重复可选着括号本身
Ctrl+F2:设置/删除标记
Ctrl+/:注释当前行
Ctrl+Shift+/:当前位置插入注释
Ctrl+Alt+/:块注释,并Focus到首行,写注释说明用的
Ctrl+Shift+A:选择当前标签前后,修改标签用的
Shift+F11:全屏免打扰模式,只编辑当前文件
Alt+F3:选择所有相同的词
Alt+.:闭合标签
Alt+Shift+数字:分屏显示
Alt+数字:切换打开第N个文件
Shift+右键拖动:光标多不,用来更改或插入列内容
鼠标的前进后退键可切换Tab文件
按Ctrl,依次点击或选取,可需要编辑的多个位置
Ctrl+shift+D: 备份多个当前行
Ctrl+shift+T: 恢复已经关闭的标签
Keypress Command
Ctrl + X Delete 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 + 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
jumps to your last change before undoing change when repeated
Ctrl + Alt + Up Column selection up
Ctrl + Alt + Down Column selection down
Alt + ? + Up Column selection up
Alt + ? + Down Column selection up
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
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
Keypress Command
Ctrl + ? + t Open last closed tab
Ctrl + PgUp Cycle up through tabs
Ctrl + PgDn Cycle down through tabs
Ctrl + ? Find in files
Alt + [NUM] Switch to tab number [NUM] where [NUM] &= number of tabs
Split window
Keypress Command
Alt + ? + 2 Split view into two columns
Alt + ? + 1 Revert view to single column
Alt + ? + 5 Set view to grid (4 groups)
Ctrl + [NUM] Jump to group where num is 1-4
Ctrl + ? + [NUM] Move file to specified group where num is 1-4
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
9212 条评论分享收藏感谢收起Access denied | zs.symbolab.com used Cloudflare to restrict access
Please enable cookies.
What happened?
The owner of this website (zs.symbolab.com) has banned your access based on your browser's signature (3f6a10cc28ea9b9f-ua98).Access denied | zt.symbolab.com used Cloudflare to restrict access
Please enable cookies.
What happened?
The owner of this website (zt.symbolab.com) has banned your access based on your browser's signature (3f6a10d7dfac9656-ua98).

我要回帖

 

随机推荐