Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos #389

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/orgguide.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ syntax highlighting and indentation~
<

Syntax Highlighting Examples~
Define an additionaly keyword 'WAITING' and set the foreground color to
Define an additionally keyword 'WAITING' and set the foreground color to
'cyan'. Define another keyword 'CANCELED' and set the foreground color to
red, background to black and the weight to normal, slant to italc and
decoration to underline:
Expand Down
2 changes: 1 addition & 1 deletion ftplugin/org.vim
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ if ! exists('g:org_syntax_highlight_leading_stars') && ! exists('b:org_syntax_hi
let g:org_syntax_highlight_leading_stars = 1
endif

" setting to conceal aggresively
" setting to conceal aggressively
if ! exists('g:org_aggressive_conceal') && ! exists('b:org_aggressive_conceal')
let g:org_aggressive_conceal = 0
endif
Expand Down
2 changes: 1 addition & 1 deletion syntax/org.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
" (we're adding two markdown-like variants for =code= and blockquotes)
" -----------------------------------------------------------------------------
"
" Do we use aggresive conceal?
" Do we use aggressive conceal?
if exists("b:org_aggressive_conceal")
let s:conceal_aggressively=b:org_aggressive_conceal
elseif exists("g:org_aggressive_conceal")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_plugin_navigator.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def test_forward_movement(self):
self.navigator.next(mode=u'normal')
self.assertEqual(vim.current.window.cursor, (18, 2))

## don't move cursor if last heading is already focussed
## don't move cursor if last heading is already focused
vim.current.window.cursor = (19, 6)
self.navigator.next(mode=u'normal')
self.assertEqual(vim.current.window.cursor, (19, 6))
Expand Down