上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页
摘要: # [Vim documentation: usr_toc](http://vimdoc.sourceforge.net/htmldoc/usr_toc.html)# 标准术语与 Vim 术语对照| Standard terminology | Vim’s jargon || -------------------- | ----------... 阅读全文
posted @ 2019-01-27 17:08 zjffun 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: # 使用 PathIntellisense 还是使用`jsconfig.json`?使用 [PathIntellisense](https://github.com/ChristianKohler/PathIntellisense) 只能提示模块路径,并无法让 vs code 的 Intellisense 知道这个模块的信息。进过一番查找使用`jsconfig.json`配置可以很好的解决这个问题... 阅读全文
posted @ 2019-01-27 17:06 zjffun 阅读(477) 评论(0) 推荐(0) 编辑
摘要: # 准备工作1. 安装 Debugger for Chrome 插件2. 按 F5(或选择菜单栏的 Debug->Start Debuging),然后选择 Chrome,就会自动创建默认的配置文件# “启动” 还是 “附加”- “启动”:配置将要调试的文件或 URL,按 F5 调试会开启一个新的 Chrome 进程并打开该文件或 URL 进行调试- “附加”:然后以允许远程调试模式打开... 阅读全文
posted @ 2019-01-27 17:06 zjffun 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 1. 打开设置2. 设置`"git.rebaseWhenSync": true` 阅读全文
posted @ 2019-01-06 18:01 zjffun 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 步骤:1. 在构建工具(webpack、gulp 等)的配置中开启生成 source map2. 将 VSCode 配置中的`debug.allowBreakpointsEverywhere`设置为`true`(重要!这个选项默认是`false`)现在就可以愉快得在源码上下断点了。参见:[Can set break points in the Visual Studio Code debugg... 阅读全文
posted @ 2019-01-06 18:00 zjffun 阅读(322) 评论(0) 推荐(0) 编辑
摘要: # 默认快捷键[Visual Studio Code 默认快捷键](https://code.visualstudio.com/docs/getstarted/keybindings#_default-keyboard-shortcuts)# 代码提示(自动补全,自动完成)默认是快捷键是`Ctrl+Space`,与搜狗输入法切换中英文的快捷键冲突了。。可以改搜狗输入法的快捷键(`Shift`切换中... 阅读全文
posted @ 2019-01-06 17:59 zjffun 阅读(387) 评论(0) 推荐(0) 编辑
摘要: # Intellisense(代码提示、智能感应)## Path Intellisense:路径别名(alias)代码提示例如:在模块打包配置中配置`@`代替了`src`,可以使用下面的配置让`@`智能感应```json "path-intellisense.mappings": { "@": "${workspaceRoot}/src" }``` 阅读全文
posted @ 2019-01-06 17:58 zjffun 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 官方的文档写的太好了!大家还是看参考资料吧。# 参考资料- [Debugging in Visual Studio Code](https://code.visualstudio.com/docs/editor/debugging)- [Debug Node.js Apps using Visual Studio Code](https://code.visualstudio.com/do... 阅读全文
posted @ 2019-01-06 17:57 zjffun 阅读(237) 评论(0) 推荐(0) 编辑
摘要: # 默认快捷键[VS Shortcuts | Shortcut keys for Visual Studio](https://www.dofactory.com/reference/visual-studio-shortcuts)VS 的快捷键真是好独特。。## 编辑- 代码提示:`Ctrl+J`- 注释: `CTRL+E,C` 或 `CTRL+K,C`- 取消注释: ... 阅读全文
posted @ 2019-01-06 17:56 zjffun 阅读(91) 评论(0) 推荐(0) 编辑
摘要: # 安装参考: 用到的文件:1. 安装 python-2.7.14.msi2. 打开命令行,并且运行以下命令来修改 PATH: c:\python27\python.exe c:\python27\tools\scripts\win_add2path.py3. 创建 register.py 文件,内容为 # # script to regist... 阅读全文
posted @ 2019-01-06 17:54 zjffun 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页