All Projects → vim-scripts → Vimwiki

vim-scripts / Vimwiki

Personal Wiki for Vim

Labels

Projects that are alternatives of or similar to Vimwiki

Zoomwin
Zoom in/out of windows (toggle between one window and multi-window)
Stars: ✭ 173 (-10.36%)
Mutual labels:  viml
Tabman.vim
Tab management for Vim
Stars: ✭ 180 (-6.74%)
Mutual labels:  viml
Github.vim
Another github v3 api implemented in vim script
Stars: ✭ 187 (-3.11%)
Mutual labels:  viml
Vimconf
Extensive vimrc with super easy install and everything in the vimrc is explained!
Stars: ✭ 175 (-9.33%)
Mutual labels:  viml
Vim Lua Ftplugin
Lua file type plug-in for the Vim text editor
Stars: ✭ 178 (-7.77%)
Mutual labels:  viml
Vimclojure
A filetype, syntax and indent plugin for Clojure
Stars: ✭ 182 (-5.7%)
Mutual labels:  viml
Detectindent
Vim script for automatically detecting indent settings
Stars: ✭ 169 (-12.44%)
Mutual labels:  viml
Vim Sneak
The missing motion for Vim 👟
Stars: ✭ 2,467 (+1178.24%)
Mutual labels:  viml
Neovim Config
Neovim configuration
Stars: ✭ 180 (-6.74%)
Mutual labels:  viml
W3m.vim
w3m plugin for vim
Stars: ✭ 186 (-3.63%)
Mutual labels:  viml
Snipmate.vim
snipMate.vim aims to be a concise vim script that implements some of TextMate's snippets features in Vim.
Stars: ✭ 2,051 (+962.69%)
Mutual labels:  viml
Vim Pipe
Send a vim buffer through a command and instantly see the output.
Stars: ✭ 178 (-7.77%)
Mutual labels:  viml
Vim Glsl
Vim runtime files for OpenGL Shading Language
Stars: ✭ 184 (-4.66%)
Mutual labels:  viml
Replacewithregister
Replace text with the contents of a register.
Stars: ✭ 174 (-9.84%)
Mutual labels:  viml
Textobj Word Column.vim
Adds text-objects for word-based columns in Vim.
Stars: ✭ 189 (-2.07%)
Mutual labels:  viml
Vim Shell
Improved integration between Vim and its environment (fullscreen, open URL, background command execution)
Stars: ✭ 171 (-11.4%)
Mutual labels:  viml
Eregex.vim
Perl/Ruby style regexp notation for Vim
Stars: ✭ 180 (-6.74%)
Mutual labels:  viml
Dotfiles
config files for zsh, bash, completions, gem, git, irb, rails
Stars: ✭ 2,206 (+1043.01%)
Mutual labels:  viml
Dot Vimrc
Maple's vim config files
Stars: ✭ 2,192 (+1035.75%)
Mutual labels:  viml
Vimfiles
Ruby/Rails centric vimfiles with support for Git, RVM and more.
Stars: ✭ 185 (-4.15%)
Mutual labels:  viml

This is a mirror of http://www.vim.org/scripts/script.php?script_id=2226

A Personal Wiki For Vim Plugin

Screenshots are available on http://code.google.com/p/vimwiki/ There are also zipped vimwiki files there in case you do not like vimball archives.

Prerequisites

Make sure you have these settings in your vimrc file:

set nocompatible filetype plugin on syntax on

Without them Vimwiki will not work properly.

Intro

Vimwiki is a personal wiki for Vim -- a number of linked text files that have their own syntax highlighting.

With vimwiki you can: - organize notes and ideas; - manage todo-lists; - write documentation.

To do a quick start press ww (this is usually \ww) to go to your index wiki file. By default it is located in: ~/vimwiki/index.wiki

Feed it with the following example:

= My knowledge base = * Tasks -- things to be done yesterday!!! * Project Gutenberg -- good books are power. * Scratchpad -- various temporary stuff.

Place your cursor on 'Tasks' and press Enter to create a link. Once pressed, 'Tasks' will become '[[Tasks]]' -- a vimwiki link. Press Enter again to open it. Edit the file, save it, and then press Backspace to jump back to your index.

A vimwiki link can be constructed from more than one word. Just visually select the words to be linked and press Enter. Try it with 'Project Gutenberg'. The result should look something like:

= My knowledge base = * [[Tasks]] -- things to be done yesterday!!! * [[Project Gutenberg]] -- good books are power. * Scratchpad -- various temporary stuff.

For the various options see :h vimwiki-options.

Basic Markup

see :h vimwiki-syntax

bold -- bold italic -- italic

[[wiki link]] -- link with spaces [[wiki link|description]] -- link with description

Lists:

  • bullet list item 1
    • bullet list item 2
    • bullet list item 3
      • bullet list item 4
      • bullet list item 5
  • bullet list item 6
  • bullet list item 7
    • bullet list item 8
    • bullet list item 9

numbered list item 1

numbered list item 2

# numbered list item 3
# numbered list item 4

= Header1 = == Header2 == === Header3 ===

Key bindings

see :h vimwiki-mappings

normal mode: ww -- Open default wiki index file. wt -- Open default wiki index file in a new tab. ws -- Select and open wiki index file. wd -- Delete wiki file you are in. wr -- Rename wiki file you are in. -- Folow/Create wiki link -- Split and folow/create wiki link -- Vertical split and folow/create wiki link -- Go back to parent(previous) wiki link -- Find next wiki link -- Find previous wiki link

Commands

:Vimwiki2HTML -- Convert current wiki link to HTML :VimwikiAll2HTML -- Convert all your wiki links to HTML

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].