From 751460ec196cf435ae31d2cd725107b6c179e2b6 Mon Sep 17 00:00:00 2001 From: "Fuliang.Li" Date: Fri, 21 Oct 2016 23:30:39 +0800 Subject: [PATCH 1/2] =?UTF-8?q?[=E5=AE=8C=E6=88=90=E7=BF=BB=E8=AF=91]=20Us?= =?UTF-8?q?eful=20Vim=20editor=20plugins=20for=20software=20developers=20-?= =?UTF-8?q?=20part=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...lugins for software developers - part 2.md | 119 ++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 translated/tech/20161017 Useful Vim editor plugins for software developers - part 2.md diff --git a/translated/tech/20161017 Useful Vim editor plugins for software developers - part 2.md b/translated/tech/20161017 Useful Vim editor plugins for software developers - part 2.md new file mode 100644 index 0000000000..2796bd2d28 --- /dev/null +++ b/translated/tech/20161017 Useful Vim editor plugins for software developers - part 2.md @@ -0,0 +1,119 @@ +开发者的实用 Vim 插件——第二部分:语法高亮校验 +============ + +毫无疑问,Vim 是一个开箱即用并能够胜任编程任务的编辑器,但实际上是该编辑器中的插件帮你实现这些方便的功能。在 [开发者的实用 Vim 插件——第二部分][39],我们已经讨论两个编程相关的 Vim 插件——标签侧边栏(Tagbar)和符号自动补齐(delimitMate)。作为相同系列,我们在本文讨论另一个非常有用、专门为软件开发正定制的插件——语法高亮插件。 + +请注意:本教程中列举的所有例示、命令和说明都是在 Ubuntu 16.04 环境下进行测试的,并且,我们使用的 Vim 版本是 7.4。 + +### 语法高亮(Syntastic)插件 + +假如你的软件开发工作涉及到 C/C++ 语言,毫无疑问的说,遇到编译错误也是你每天工作中的一部分。很多时候,编译错误石油源代码之中的语法不正确造成的,因为开发者在浏览源码的时候很少能够一眼就看出所有这些错误。 + +那么 Vim 中是否存在一种插件可以让你不经编译源码就可以显示出语法错误呢?当然时有这样一种插件的,其名字就是 Syntastic。 + +“Syntastic 是 Vim 用来检验语法的插件,通过外部语法校验器校验文件并将错误呈现给用户。该过程可以用户指定,或者在文件保存的时候自动进行。”该插件 [官方文档][37] 如是说。“如果检测到语法错误就会提示用户,因为不用编译代码或者执行脚本就可以知道语法错误,用也就乐享与此了。” + +安装过程和第一部分提到的方法类似,你只需要运行下列命令即可: + +``` +cd ~/.vim/bundle/ + +git clone https://github.com/scrooloose/syntastic.git +``` +一旦你成功安装这个插件(即上述命令执行成功),你就不需要进行任何配置了——当 Vim 启动时会自动加载这个插件。 + +现在,打开一个源码文件并用 :w Vim 命令保存即可使用这个插件了。等待片刻之后,如果在源码中有语法错误的好,就会高亮显示出来。比如,看看一下截图你就会明白该插件是如何高亮显示语法错误的: + +[![Vim Syntax error highlighting](https://www.howtoforge.com/images/3337/syntastic-error-highlight.png)][36] + +在没之前的 `>>` 表示该行中有语法错误。了解确切的错误或者相知道是什么东西错了,将光标移到该行——错误描述就会展示在 Vim 窗口的最底下。 + +[![View Syntax errors in Vim](https://www.howtoforge.com/images/3337/syntastic-error-descr.png)][35] + +这样,不用进行编译你就能够修复大多数语法相关的错误。 + +再往下,如果你运行 :Errors 命令,就会展现当前源文件中所有语法相关错误的描述。比如,我运行 :Errors 命令就是下图的效果: + +[![Syntastic :Errors command](https://www.howtoforge.com/images/3337/syntastic-error-all-descr.png)][34] + +请记住,:Errors 展现的语法错误是不会自动更新的,这意味着在你修复错误之后,你需要重新运行 :Errors 命令,编辑器底部的错误描述才会消除。 + +值得一提的是,还有 [许多配置选项][33] 能够使得 Syntastic 插件使用起来更加友好。比如,你可以在你的 .vimrc 中添加下列内容,然后 :Errors 就可以在修复错误之后自动更新它的底部描述。 + +``` +let g:syntastic_always_populate_loc_list = 1 +``` +添加一下内容,以确保在你打开文件时 Syntastic 插件自动高亮显示错误。 + +``` +let g:syntastic_check_on_open = 1 +let g:syntastic_auto_jump = 1 +``` + +“如果设置为 2 的话,光标就会跳到检测到的第一个问题,当然,只有这个问题是一个错误的时候才跳转。设置为 3 的话,如果存在错误,则会跳到第一个错误。所有检测到的问题都会有警告,但光标不会跳转。” + +以下信息可能对你有帮助: + +使用 :SyntasticCheck 来手动检测错误。使用 :Errors 打开错误位置列表并使用 :lclose 来关闭。使用 :SyntasticReset 可以清除掉错误列表,使用 :SyntasticToggleMode 来切换激活(在 buffer 中检测)和取消(即手动检测)检测错误。 + +注意:Syntastic 并不局限于 C/C++ 所写的代码,它同时也支持很多的编程语言——点击 [此处][32] 了解更多相关信息。 + +### 结论 + +毫无疑问的,Syntastic 是一个非常有用的 Vim 插件,因为在出现语法相关错误时候,它至少能够让免去频繁编译的麻烦,而且不用说,同时也节约了你不少的时间。 + +正如你所看到的一样,配置好几个主要选项之后,Syntastic 变成一个非常好用了。为了帮助你了解这些设置,官方文档中包含了一份“推荐设置”——跟着文档进行设置即可。加入你遇到一些错误、有些疑问或者问题,你一可以查询一下 FAQ。 + +-------------------------------------------------------------------------------- + +via: https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ + +作者:[Ansh][a] + +译者:[GHLandy](https://github.com/GHLandy) + +校对:[校对者ID](https://github.com/校对者ID) + +本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 + +[a]: https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ +[1]:https://www.youtube.com/channel/UCOfXyFkINXf_e9XNosTJZDw +[2]:https://www.youtube.com/user/desainew +[3]:https://www.youtube.com/channel/UCEQXp_fcqwPcqrzNtWJ1w9w +[4]:http://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F +[5]:http://twitter.com/intent/tweet/?text=Is+Open+Source+Design+a+Thing%3F&url=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F +[6]:https://plus.google.com/share?url=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F +[7]:https://atom.io/ +[8]:http://froont.com/ +[9]:https://webflow.com/ +[10]:https://gravit.io/ +[11]:http://getbootstrap.com/ +[12]:https://inkscape.org/en/ +[13]:https://www.gimp.org/ +[14]:https://en.wikipedia.org/wiki/Free_and_open-source_software +[15]:https://medium.com/dawn-capital/why-leverage-the-power-of-open-source-to-build-a-successful-software-business-8aba6f665bc4#.ggmn2ojxp +[16]:https://github.com/majutsushi/tagbar +[17]:http://ctags.sourceforge.net/ +[18]:https://github.com/majutsushi/tagbar/zipball/70fix +[19]:https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim +[20]:http://www.vim.org/scripts/script.php?script_id=2332 +[21]:https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ +[22]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-delimitmate-help.png +[23]:https://github.com/Raimondi/delimitMate +[24]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-visibility.png +[25]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-ex2.png +[26]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-example.png +[27]:http://www.tldp.org/LDP/intro-linux/html/sect_06_02.html +[28]:http://majutsushi.github.io/tagbar/ +[29]:http://vi.stackexchange.com/questions/388/what-is-the-difference-between-the-vim-plugin-managers +[30]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-vimrc.png +[31]:http://www.vim.org/ +[32]:https://github.com/scrooloose/syntastic +[33]:https://github.com/scrooloose/syntastic/blob/master/doc/syntastic.txt +[34]:https://www.howtoforge.com/images/3337/big/syntastic-error-all-descr.png +[35]:https://www.howtoforge.com/images/3337/big/syntastic-error-descr.png +[36]:https://www.howtoforge.com/images/3337/big/syntastic-error-highlight.png +[37]:https://github.com/scrooloose/syntastic +[38]:http://www.vim.org/ +[39]:https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers/ + From 377ef6051cb857dff6b077f146b5d469246e788f Mon Sep 17 00:00:00 2001 From: "Fuliang.Li" Date: Fri, 21 Oct 2016 23:31:34 +0800 Subject: [PATCH 2/2] =?UTF-8?q?[=E5=88=A0=E9=99=A4=E5=8E=9F=E6=96=87]=20Us?= =?UTF-8?q?eful=20Vim=20editor=20plugins=20for=20software=20developers=20-?= =?UTF-8?q?=20part=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...lugins for software developers - part 2.md | 122 ------------------ 1 file changed, 122 deletions(-) delete mode 100644 sources/tech/20161017 Useful Vim editor plugins for software developers - part 2.md diff --git a/sources/tech/20161017 Useful Vim editor plugins for software developers - part 2.md b/sources/tech/20161017 Useful Vim editor plugins for software developers - part 2.md deleted file mode 100644 index f6015341a7..0000000000 --- a/sources/tech/20161017 Useful Vim editor plugins for software developers - part 2.md +++ /dev/null @@ -1,122 +0,0 @@ -GHLandy Translating - -Useful Vim editor plugins for software developers - part 2: Syntastic -============ - -There's no doubt that Vim is a capable programming editor out-of-the-box, but it's the editor's plugins that help you make the most out of it. In the [first part][39] of this article series, we discussed a couple of programing-related Vim plugins (Tagbar and delimitMate). Continuing on the same path, in this article, we will discuss another useful Vim plugin aimed at software developers - Syntastic. - -Please note that all the examples, commands, and instructions mentioned in this tutorial have been tested on Ubuntu 16.04, and the Vim version we've used is 7.4. - -### Syntastic - -If your software development work involves working with languages like C and C++, it's needless to say that resolving compile time errors would be part of your daily work. Many a times, compilation errors arise due to incorrect syntax used in source code, as developers fail to observe them while just looking at the code. - -What if I tell you there exists a Vim plugin that provides information about syntax errors without you having to compile your code? Yes, such a plugin exists, and it's name is Syntastic. - -"Syntastic is a syntax checking plugin for [Vim][38] that runs files through external syntax checkers and displays any resulting errors to the user. This can be done on demand, or automatically as files are saved," the [official documentation][37] of the plugin says. "If syntax errors are detected, the user is notified and is happy because they didn't have to compile their code or execute their script to find them." - -Installation of this plugin is similar to the way we installed the ones that were discussed in the first part - all you need to do is to run the following commands: - -``` -cd ~/.vim/bundle/ - -git clone https://github.com/scrooloose/syntastic.git -``` - -Once the plugin is installed successfully (meaning the above commands are successful), you don't have to do anything else - it loads automatically when the Vim editor is launched. - -Now, to use the plugin, open a source code file and save it using the :w Vim command. After a very brief pause, you'll observe that syntax errors - if any - in your code will be highlighted. For example, the following screenshot should give you an idea about how the plugin highlights the errors: - -[![Vim Syntax error highlighting](https://www.howtoforge.com/images/3337/syntastic-error-highlight.png)][36] - -The '>>' sign in the beginning of a line indicates that there's some problem with the code written in that line. To know what exactly the error is, or at-least get a rough idea about it, bring the cursor to that line - the error description will be displayed at the bottom of the Vim window.  - -[![View Syntax errors in Vim](https://www.howtoforge.com/images/3337/syntastic-error-descr.png)][35] - -So this way, you can resolve most of the syntax-related errors without even compiling the code. - -Moving on, if you run the :Errors command, description of all the syntax-related errors in the current source file will be displayed. For example, running the:Errors command in my case brought up the following information: - -[![Syntastic :Errors command](https://www.howtoforge.com/images/3337/syntastic-error-all-descr.png)][34] - -Keep in mind that the information the :Errors command displays isn't auto-refreshed, meaning even after an error is resolved, it's description will be there at the bottom area until you run the :Errors command again. - -It's worth mentioning that there are [many configuration options][33] that make Syntastic even more user-friendly. For example, you can put the following line in your .vimrc file if you want the :Errors command to automatically update its output each time an error is resolved: - -``` -let g:syntastic_always_populate_loc_list = 1 -``` - -To make sure that Syntastic highlights the errors automatically when a file is opened, add the following line to your .vimrc file: - -``` -let g:syntastic_check_on_open = 1 -let g:syntastic_auto_jump = 1 -``` - -"When set to 2 the cursor will jump to the first issue detected, but only if this issue is an error," and "when set to 3 the cursor will jump to the first error detected, if any. If all issues detected are warnings, the cursor won't jump." - -The following information should also be useful to you: - -"Use :SyntasticCheck to manually check" for errors. "Use :Errors to open the location-list window, and :lclose to close it. You can clear the error list with:SyntasticReset, and you can use :SyntasticToggleMode to switch between active (checking on writing the buffer) and passive (manual) checking." - -Note: Syntastic isn't just limited to code written in C and C++. It supports a huge list of other programming languages as well - head [here][32] to learn more about it. - -### Conclusion - -Undoubtedly, Syntastic is a very useful Vim plugin as it saves you from the hassle of frequent compilation at-least when it comes to syntax-related errors. And not to mention that a lot of your time gets saved as well.  - -As you would have observed, Syntastic becomes even more useful once you've configured some of its main options.  To help you get started with this, the official documentation contains a 'Recommended settings' section - do go through that. There is a nice little FAQ section as well in case you face some errors or have some doubts or queries. - --------------------------------------------------------------------------------- - -via: https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ - -作者:[Ansh][a] - -译者:[译者ID](https://github.com/译者ID) - -校对:[校对者ID](https://github.com/校对者ID) - -本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 - -[a]: https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ -[1]:https://www.youtube.com/channel/UCOfXyFkINXf_e9XNosTJZDw -[2]:https://www.youtube.com/user/desainew -[3]:https://www.youtube.com/channel/UCEQXp_fcqwPcqrzNtWJ1w9w -[4]:http://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F -[5]:http://twitter.com/intent/tweet/?text=Is+Open+Source+Design+a+Thing%3F&url=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F -[6]:https://plus.google.com/share?url=https%3A%2F%2Ffreedompenguin.com%2Farticles%2Fopinion%2Fopen-source-design-thing%2F -[7]:https://atom.io/ -[8]:http://froont.com/ -[9]:https://webflow.com/ -[10]:https://gravit.io/ -[11]:http://getbootstrap.com/ -[12]:https://inkscape.org/en/ -[13]:https://www.gimp.org/ -[14]:https://en.wikipedia.org/wiki/Free_and_open-source_software -[15]:https://medium.com/dawn-capital/why-leverage-the-power-of-open-source-to-build-a-successful-software-business-8aba6f665bc4#.ggmn2ojxp -[16]:https://github.com/majutsushi/tagbar -[17]:http://ctags.sourceforge.net/ -[18]:https://github.com/majutsushi/tagbar/zipball/70fix -[19]:https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim -[20]:http://www.vim.org/scripts/script.php?script_id=2332 -[21]:https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers-2-syntastic/ -[22]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-delimitmate-help.png -[23]:https://github.com/Raimondi/delimitMate -[24]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-visibility.png -[25]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-ex2.png -[26]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-tagbar-example.png -[27]:http://www.tldp.org/LDP/intro-linux/html/sect_06_02.html -[28]:http://majutsushi.github.io/tagbar/ -[29]:http://vi.stackexchange.com/questions/388/what-is-the-difference-between-the-vim-plugin-managers -[30]:https://www.howtoforge.com/images/vim-editor-plugins-for-software-developers/big/vimplugins-vimrc.png -[31]:http://www.vim.org/ -[32]:https://github.com/scrooloose/syntastic -[33]:https://github.com/scrooloose/syntastic/blob/master/doc/syntastic.txt -[34]:https://www.howtoforge.com/images/3337/big/syntastic-error-all-descr.png -[35]:https://www.howtoforge.com/images/3337/big/syntastic-error-descr.png -[36]:https://www.howtoforge.com/images/3337/big/syntastic-error-highlight.png -[37]:https://github.com/scrooloose/syntastic -[38]:http://www.vim.org/ -[39]:https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers/