All Projects → vimwiki → Vimwiki

vimwiki / Vimwiki

Licence: other
Personal Wiki for Vim

Programming Languages

Vim Script
2826 projects
shell
77523 projects
CSS
56736 projects

Projects that are alternatives of or similar to Vimwiki

Docs
Documentation for Tasmota (https://github.com/arendst/Tasmota)
Stars: ✭ 55 (-99.21%)
Mutual labels:  hacktoberfest, wiki
Simplepresence
An easy and simple way to set your Discord Rich Presence Status through RPC (no token required)
Stars: ✭ 184 (-97.36%)
Mutual labels:  hacktoberfest, wiki
Java
All Algorithms implemented in Java
Stars: ✭ 42,893 (+515.39%)
Mutual labels:  hacktoberfest, wiki
Hads
📚 Markdown superpowered documentation for Node.js
Stars: ✭ 147 (-97.89%)
Mutual labels:  hacktoberfest, wiki
Vim Startify
🔗 The fancy start screen for Vim.
Stars: ✭ 4,479 (-35.74%)
Mutual labels:  hacktoberfest, vim-plugin
R6 Operator Counters
A website with a graph visualisation of how operators counter each other in Rainbow Six Siege.
Stars: ✭ 51 (-99.27%)
Mutual labels:  hacktoberfest, wiki
Documentation
The source for Datadog's documentation site.
Stars: ✭ 147 (-97.89%)
Mutual labels:  hacktoberfest, wiki
Viki vim
A personal wiki for Vim
Stars: ✭ 52 (-99.25%)
Mutual labels:  wiki, vim-plugin
Rigel
🌌 Colorscheme for vim, terminal, vscode and slack - based on the star Rigel ✨.
Stars: ✭ 324 (-95.35%)
Mutual labels:  hacktoberfest, vim-plugin
vimwiki-skel
Skeleton for seeding new Vimwiki instances
Stars: ✭ 18 (-99.74%)
Mutual labels:  wiki, vimwiki
Jupyter Vim
Make Vim talk to Jupyter kernels
Stars: ✭ 194 (-97.22%)
Mutual labels:  hacktoberfest, vim-plugin
Persepolis
Persepolis Download Manager is a GUI for aria2.
Stars: ✭ 5,218 (-25.14%)
Mutual labels:  hacktoberfest, wiki
Ngx Scanner
Angular (2+) QR code, Barcode, DataMatrix, scanner component using ZXing.
Stars: ✭ 420 (-93.97%)
Mutual labels:  hacktoberfest, wiki
Plots2
a collaborative knowledge-exchange platform in Rails; we welcome first-time contributors! 🎈
Stars: ✭ 666 (-90.44%)
Mutual labels:  hacktoberfest, wiki
Elide
Elide is a Java library that lets you stand up a GraphQL/JSON-API web service with minimal effort.
Stars: ✭ 766 (-89.01%)
Mutual labels:  hacktoberfest
Whirl
CSS loading animations with minimal effort!
Stars: ✭ 774 (-88.9%)
Mutual labels:  hacktoberfest
Btgym
Scalable, event-driven, deep-learning-friendly backtesting library
Stars: ✭ 765 (-89.02%)
Mutual labels:  hacktoberfest
Combinecocoa
Combine publisher bridges for UIKit
Stars: ✭ 757 (-89.14%)
Mutual labels:  hacktoberfest
Laravel Adminpanel
A Laravel Admin Panel (Laravel Version : 6.0)
Stars: ✭ 774 (-88.9%)
Mutual labels:  hacktoberfest
Tactician
A small, flexible command bus
Stars: ✭ 773 (-88.91%)
Mutual labels:  hacktoberfest

VimWiki: A Personal Wiki For Vim

中文


Introduction

VimWiki is a personal wiki for Vim -- a number of linked text files that have their own syntax highlighting. See the VimWiki Wiki for an example website built with VimWiki!

For the latest features and fixes checkout the dev branch. If you are interested in contributing see this section.

With VimWiki, you can:

  • Organize notes and ideas
  • Manage to-do lists
  • Write documentation
  • Maintain a diary
  • Export everything to HTML

To do a quick start, press <Leader>ww (default is \ww) to go to your index wiki file. By default, it is located in ~/vimwiki/index.wiki. See :h vimwiki_list for registering a different path/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.

Screenshots

Lists View Entries View Todos View Wiki View

Installation

VimWiki has been tested on Vim >= 7.3. It will likely work on older versions but will not be officially supported.

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.

Installation using Vim packages (since Vim 7.4.1528)

git clone https://github.com/vimwiki/vimwiki.git ~/.vim/pack/plugins/start/vimwiki

# to generate documentation i.e. ':h vimwiki'
vim -c 'helptags ~/.vim/pack/plugins/start/vimwiki/doc' -c quit

Notes:

  • See :h helptags for issues with installing the documentation.
  • For general information on vim packages see :h packages.

Installation using Pathogen

cd ~/.vim
mkdir bundle
cd bundle
git clone https://github.com/vimwiki/vimwiki.git

Installation using Vim-Plug

Add the following to the plugin-configuration in your vimrc:

Plug 'vimwiki/vimwiki'

Then run :PlugInstall.

Installation using Vundle

Add Plugin 'vimwiki/vimwiki' to your vimrc file and run:

vim +PluginInstall +qall

Manual Install

Download the zip archive and extract it in ~/.vim/bundle/

Then launch Vim, run :Helptags and then :help vimwiki to verify it was installed.

Basic Markup

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


*bold* -- bold text
_italic_ -- italic text

[[wiki link]] -- wiki link
[[wiki link|description]] -- wiki 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

1. numbered list item 1
2. numbered list item 2
    a) numbered list item 3
    b) numbered list item 4

For other syntax elements, see :h vimwiki-syntax

Key bindings

Normal mode

Note: your terminal may prevent capturing some of the default bindings listed below. See :h vimwiki-local-mappings for suggestions for alternative bindings if you encounter a problem.

Basic key bindings

  • <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.

Advanced key bindings

Refer to the complete documentation at :h vimwiki-mappings to see many more bindings.

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).

NOTE: Only the default syntax ships with a built-in HTML converter. For Markdown or MediaWiki see :h vimwiki-option-custom_wiki2html. Some examples and 3rd party tools are available here.

If you would prefer to use either Markdown or MediaWiki syntaxes, set the following option in your .vimrc:

let g:vimwiki_list = [{'path': '~/vimwiki/',
                      \ 'syntax': 'markdown', 'ext': '.md'}]

Getting help

GitHub issues are the primary method for raising bug reports or feature requests.

Additional resources include the IRC channel #vimwiki on Freenode (webchat, also synced to Matrix/Riot: #freenode_#vimwiki:matrix.org and Telegram) or post to the mailing list.

Helping VimWiki

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 for information on how you can help.

Also, take a look at CONTRIBUTING.md.


License

MIT License

Copyright (c) 2008-2010 Maxim Kim 2013-2017 Daniel Schemala

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:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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.

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].