vimwiki/README.md

244 lines
6.5 KiB
Markdown
Raw Normal View History

2019-04-01 16:13:40 +02:00
# VimWiki: A Personal Wiki For Vim
2013-04-21 19:19:46 +02:00
[中文](README-cn.md)
2019-04-01 16:13:40 +02:00
- [Intro](#intro)
- [Installation](#installation)
- [Prerequisites](#prerequisites)
- [VIM Packages](#installation-using-vim-packages-since-vim-741528)
- [Pathogen](#installation-using-pathogen)
- [Vim-Plug](#installation-using-vim-plug)
- [Vundle](#installation-using-vundle)
- [Basic Markup](#basic-markup)
- [Lists](#lists)
- [Key Bindings](#key-bindings)
- [Commands](#commands)
- [Changing Wiki Syntax](#changing-wiki-syntax)
- [Getting Help](#getting-help)
- [Helping VimWiki](#helping-vimwiki)
- [Wiki](https://github.com/vimwiki/vimwiki/wiki)
- [License](#license)
## Intro
VimWiki is a personal wiki for Vim -- a number of linked text files that have
2013-04-21 19:19:46 +02:00
their own syntax highlighting.
2019-04-01 16:13:40 +02:00
With VimWiki you can:
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
* Organize notes and ideas
* Manage to-do lists
* Write documentation
* Maintain a diary
* Export everything to HTML
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
To do a quick start press `<Leader>ww` (this is usually `\ww`) to go to your
index wiki file. By default it is located in `~/vimwiki/index.wiki`.
2013-04-21 19:19:46 +02:00
Feed it with the following example:
2019-04-01 16:13:40 +02:00
```
= My knowledge base =
* Tasks -- things to be done _yesterday_!!!
* Project Gutenberg -- good books are power.
* Scratchpad -- various temporary stuff.
```
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
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
2013-04-21 19:19:46 +02:00
index.
2019-04-01 16:13:40 +02:00
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`.
2015-11-17 15:58:01 +01:00
The result should look something like:
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
= My knowledge base =
* [[Tasks]] -- things to be done _yesterday_!!!
* [[Project Gutenberg]] -- good books are power.
* Scratchpad -- various temporary stuff.
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
## Installation
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
### Prerequisites
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
Make sure you have these settings in your vimrc file:
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
```vim
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
set nocompatible
filetype plugin on
syntax on
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
Without them VimWiki will not work properly.
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
#### Installation using [Vim packages](http://vimhelp.appspot.com/repeat.txt.html#packages) (since Vim 7.4.1528)
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
```sh
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
git clone https://github.com/vimwiki/vimwiki.git ~/.vim/pack/plugins/start/vimwiki
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
#### Installation using [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332)
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```sh
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
cd ~/.vim
mkdir bundle
cd bundle
git clone https://github.com/vimwiki/vimwiki.git
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
```
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
#### Installation using [Vim-Plug](https://github.com/junegunn/vim-plug)
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
Add the following to the plugin-configuration in your vimrc:
2019-04-01 16:13:40 +02:00
```vim
2019-04-01 16:13:40 +02:00
Plug 'vimwiki/vimwiki'
2019-04-01 16:13:40 +02:00
```
2019-04-01 16:13:40 +02:00
Then run `:PlugInstall`.
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
#### Installation using [Vundle](https://github.com/VundleVim/Vundle.vim)
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
Add `Plugin 'vimwiki/vimwiki'` to your vimrc file and run
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
```sh
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
vim +PluginInstall +qall
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
```
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
Or download the [zip
archive](https://github.com/vimwiki/vimwiki/archive/master.zip) and extract it
in `~/.vim/bundle/`
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
Then launch Vim, run `:Helptags` and then `:help vimwiki` to verify it was
installed.
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
## Basic Markup
2017-03-27 14:47:48 +02:00
2019-04-01 16:13:40 +02:00
```
= Header1 =
== Header2 ==
=== Header3 ===
2017-03-27 14:47:48 +02:00
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
*bold* -- bold text
_italic_ -- italic text
2015-11-17 15:58:01 +01:00
2019-04-01 16:13:40 +02:00
[[wiki link]] -- wiki link
[[wiki link|description]] -- wiki link with description
```
2019-04-01 16:13:40 +02:00
### Lists:
2019-04-01 16:13:40 +02:00
```
* 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
2019-04-01 16:13:40 +02:00
1. numbered list item 1
2. numbered list item 2
a) numbered list item 3
b) numbered list item 4
```
2019-04-01 16:13:40 +02:00
For other syntax elements, see `:h vimwiki-syntax`
2016-12-18 13:23:14 +01:00
2019-04-01 16:13:40 +02:00
## Key bindings
Normal mode:
* `<Leader>ww` -- Open default wiki index file.
* `<Leader>wt` -- Open default wiki index file in a new tab.
* `<Leader>ws` -- Select and open wiki index file.
* `<Leader>wd` -- Delete wiki file you are in.
* `<Leader>wr` -- Rename wiki file you are in.
* `<Enter>` -- Follow/Create wiki link
* `<Shift-Enter>` -- Split and follow/create wiki link
* `<Ctrl-Enter>` -- Vertical split and follow/create wiki link
* `<Backspace>` -- Go back to parent(previous) wiki link
* `<Tab>` -- Find next wiki link
* `<Shift-Tab>` -- Find previous wiki link
For more keys, see `:h vimwiki-mappings`
## Commands
* `:VimWiki2HTML` -- Convert current wiki link to HTML
* `:VimWikiAll2HTML` -- Convert all your wiki links to HTML
* `:help vimwiki-commands` -- list all commands
* `:help vimwiki` -- General vimwiki help docs
## Changing Wiki Syntax
VimWiki currently ships with 3 syntaxes: VimWiki (default), Markdown
(markdown), and MediaWiki (media)
If you would prefer to use either Markdown or MediaWiki syntaxes, set the
following option in your .vimrc:
```vim
let g:vimwiki_list = [{'path': '~/vimwiki/',
\ 'syntax': 'markdown', 'ext': '.md'}]
2016-12-18 13:23:14 +01:00
2019-04-01 16:13:40 +02:00
```
2016-12-18 13:23:14 +01:00
2019-04-01 16:13:40 +02:00
## Getting help
2013-04-21 19:19:46 +02:00
2019-04-01 16:13:40 +02:00
**Have a question?**
Visit the IRC channel [`#vimwiki`](https://webchat.freenode.net/?channels=#vimwiki) on Freenode ([webchat](https://webchat.freenode.net/?channels=#vimwiki), also synced to Matrix/Riot: `#freenode_#vimwiki:matrix.org`) or post to the [mailing list](https://groups.google.com/forum/#!forum/vimwiki).
2019-04-01 16:13:40 +02:00
## Helping VimWiki
2019-04-01 16:13:40 +02:00
VimWiki has a lot of users but only very few recurring developers or people
helping the community. Your help is therefore appreciated. Everyone can help!
See [#625](https://github.com/vimwiki/vimwiki/issues/625) for information on
how you can help.
2019-04-01 16:13:40 +02:00
## License
2019-03-09 14:49:01 +01:00
2019-04-01 16:13:40 +02:00
MIT License
2019-03-09 14:49:01 +01:00
2019-04-01 16:13:40 +02:00
Copyright (c) 2008-2010 Maxim Kim
2013-2017 Daniel Schemala
2019-03-09 14:49:01 +01:00
2019-04-01 16:13:40 +02:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2019-04-01 16:13:40 +02:00
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
2019-04-01 16:13:40 +02:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.