diff --git a/README.md b/README.md index 75fc374..549d932 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really warrant a full blog post. These are mostly things I learn by pairing with smart people at [Hashrocket](http://hashrocket.com/). -_480 TILs and counting..._ +_481 TILs and counting..._ --- @@ -527,6 +527,7 @@ _480 TILs and counting..._ - [Preventing Typos with Abbreviations](vim/preventing-typos-with-abbreviations.md) - [Previous Buffer](vim/previous-buffer.md) - [Previous Visual Selection](vim/previous-visual-selection.md) +- [Print Version Information](vim/print-version-information.md) - [Quick File Info](vim/quick-file-info.md) - [Quick Man Pages](vim/quick-man-pages.md) - [Quick Quickfix List Navigation](vim/quick-quickfix-list-navigation.md) diff --git a/vim/print-version-information.md b/vim/print-version-information.md new file mode 100644 index 0000000..c8eec18 --- /dev/null +++ b/vim/print-version-information.md @@ -0,0 +1,13 @@ +# Print Version Information + +Want to know what version of Vim you are using, plus a bunch of other +information? Try entering + +``` +:version +``` + +This will display the version including patches. It will tell you when it +was compiled. A list of available and unavailable features is also included. + +h/t Chris Erin