Skip to content

Commit

Permalink
Fixed doc whitespace problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Soares committed Oct 4, 2012
1 parent c6bfd0c commit 30f7b48
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,4 +8,4 @@ Longline helps you with long lines in vim.
* Vary the definition of "too long" by file type.
* Provide easy hooks for your `statusline` to know if long lines exist.

See the help documentation for details.
See doc/longline.txt for details.
24 changes: 12 additions & 12 deletions doc/longline.txt
Expand Up @@ -24,25 +24,25 @@ Longline allows you to:
=============================================================================
CONFIGURATION *longline-config*

*g:loaded_longline*
*g:loaded_longline*
use this to disable the plugin completely: >
let g:loaded_longline = 1
<

*g:longline_autohl*
*g:longline_autohl*

Whether or not to automatically highlight the ends of lines that are too long.
Default: 0.

*g:longline_autotw*
*g:longline_autotw*

Whether or not to automatically set |textwrap|. Default: 1.

*g:longline_maxlength*
*g:longline_maxlength*

The maximum line length. Default: 80. '0' denotes no limit.

*g:longline_exceptions*
*g:longline_exceptions*

Set exceptions for filetypes that don't conform to |g:longline_maxlength|. For
example, the following: >
Expand All @@ -60,7 +60,7 @@ If you don't agree with those defaults, either override them in
let g:longline_default_exceptions={}
<

*g:longline_tw*
*g:longline_tw*

A dictionary denoting which filetypes should have |textwrap| on. By default
all filetypes will have |textwrap| set, but any filetype with a zero or
Expand All @@ -73,19 +73,19 @@ ensures that |textwrap| will never be set by longline in markdown files.
=============================================================================
COMMANDS *longline-commands*

*:LongLineNext*
*:LongLineNext*
Jumps the cursor to the next line that is too long.

*:LongLinePrev*
*:LongLinePrev*
Jumps the cursor to the previous line that is too long.

*:LongLineShow*
*:LongLineShow*
Highlights the parts of lines in a file that are too long.

*:LongLineHide*
*:LongLineHide*
Turns off long line highlighting.

*:LongLineToggle*
*:LongLineToggle*
Toggles long line highlighting.

=============================================================================
Expand All @@ -105,7 +105,7 @@ recommend adding >
<
or something of the sort to your statusline.

*longline#MaxLength*
*longline#MaxLength*
Your scripts may call this function to determine the longest allowable line
for a filetype. You may pass a filetype as an argument. If you don't, the
current filetype will be used.
Expand Down

0 comments on commit 30f7b48

Please sign in to comment.