浙江省高等学校教师教育理论培训

微信搜索“教师资格证岗前培训”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Vim 秘籍表 — LinuxTOY

    Vim 秘籍表

    2011-09-19 黑日白月 Posted in Screenshots, Vim pluginsRSS

    献给程序员们,彩色风格的 VIM 速查秘籍表,适合打印、设为桌面背景或放置到专门的数码相框。

    同时还提供 300DPI 的清晰版、黑白和适用于红绿色盲人士的版本,请移步至作者站点下载。

Vim Cheat Sheat for Programmers by Michael Pohoreski

Update: Version 2.0 is up! There are now 4 versions to chose from:
(If you are wondering what the differences are between the screen and print: the screen has less color variations, and no gradients to make it easier to read.)

The color coded Legend / Keys helps provide guidance for your experience level.

 

  •   Green   = Essential
  •   Yellow   = Basic
  •   Orange   / Blue = Advanced
  •   Red   = Expert

If you don't like this version (I'd love to hear why) try these, you may find them more to your liking...

Thanks to all the redditors for the feedback!  ~ Michael


The on-screen 150 DPI .png version is shown...

The color hard-copy 300 DPI .png version:
The monochrome hard-copy 300 DPI .png version:
An color blind hard-copy 150 DPI .png version:

 


=== Vim Rants ===

Vim has 4 bugs...
  • Unable to map Caps lock key, Ctrl-1, Ctrl-Shift-1, Ctrl-Alt-Shift-1, etc. !
  • Unable to distinguish between TAB and Ctrl-I, ESC and Ctrl-[ ! Any _modern_ editor can tell the diffeence. It is not 1970 anymore people!
  • :set list doesn't work for displaying all whitespace with a seperate character, i.e., listchars is missing an whitespace:+ option.
  • The cursor movement keys h j k l are literally hard-coded throughout the source -- which also effects the netrw :Explore file browser. A user should be able to tell Vim what their 4 basic movement keys are, and ALL commands & Plugins should use THAT. The PROPER way to write code is to translate key presses into an enumeration, i.e. CMD_MOVE_UP, CMD_MOVE_DOWN, etc, and use THAT in your logic, NOT if (cmd == 'h') ....
Othe then that, Vim is a beautiful code editor!
posted on 2013-01-08 00:59  lexus  阅读(274)  评论(0编辑  收藏  举报