Skip to content

Format Markdown files for refs/heads/vim-docs #103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/docs/General/Vim Commands/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ In this section we present a list of all custom vim commands that are supported
| Command | Shorthand | Description | Usage |
| :----------: | :-------: | :-----------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------: |
| `new` | `new` | Opens a new tab, if no langauge is specified, a tab in default editor langauge will open | `new cpp` or `new` |
| `next` | `nxt` | Switch to next tab in the editor. Returns to first tab if there is no next tab. | `next` or `nxt` |
| `previous` | `prv` | Switch to last tab in the editor. Returns to last tab if there is no previous tab. | `previous` or `prv` |
| `next` | `nxt` | Switch to next tab in the editor. Returns to first tab if there is no next tab. | `next` or `nxt` |
| `previous` | `prv` | Switch to last tab in the editor. Returns to last tab if there is no previous tab. | `previous` or `prv` |
| `open` | `opn` | Opens a new file, Only C++/Java/Python files will be opened. The opened tab will use the language as per file extension. | `open /absolute/path/of/file.cpp` or `opn ~/cf/a.cpp` |
| `compile` | `cmp` | Compiles the code, It is like clicking "Compile" button in a tab. | `compile` or `cmp` |
| `crun` | `crn` | Compiles and run, It is like clicking "Compile and Run" button in a tab. | `crun` or `crn` |
Expand Down