Clarifying a comment.

This commit is contained in:
Strahinja Val Markovic 2013-06-09 17:31:17 -07:00
parent ee3ede5040
commit 8fe41c7c73

View File

@ -30,8 +30,8 @@ def CurrentLineAndColumn():
def CurrentColumn(): def CurrentColumn():
"""Returns the 0-based current column. Do NOT access the CurrentColumn in """Returns the 0-based current column. Do NOT access the CurrentColumn in
vim.current.line. It doesn't exist yet. Only the chars before the current vim.current.line. It doesn't exist yet when the cursor is at the end of the
column exist in vim.current.line.""" line. Only the chars before the current column exist in vim.current.line."""
# vim's columns are 1-based while vim.current.line columns are 0-based # vim's columns are 1-based while vim.current.line columns are 0-based
# ... but vim.current.window.cursor (which returns a (line, column) tuple) # ... but vim.current.window.cursor (which returns a (line, column) tuple)