1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
# File: voom_mode_fmr.py
# Last Modified: 2017-01-07
# Description: VOoM -- two-pane outliner plugin for Python-enabled Vim
# Website: http://www.vim.org/scripts/script.php?script_id=2657
# Author: Vlad Irnov (vlad DOT irnov AT gmail DOT com)
# License: CC0, see http://creativecommons.org/publicdomain/zero/1.0/
"""
VOoM markup mode for start fold markers with levels.
See |voom-mode-fmr|, ../../../doc/voom.txt#*voom-mode-fmr*
This is the default or "fmr" mode. This module changes absolutely nothing.
"""
# Define this mode as an 'fmr' mode.
MTYPE = 0
|