2012-08-04 20:46:54 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2014-01-13 14:08:43 -05:00
|
|
|
# Copyright (C) 2011, 2012 Google Inc.
|
2012-08-04 20:46:54 -04:00
|
|
|
#
|
|
|
|
# This file is part of YouCompleteMe.
|
|
|
|
#
|
|
|
|
# YouCompleteMe is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# YouCompleteMe is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import vim
|
2013-10-03 13:14:31 -04:00
|
|
|
import os
|
2013-10-04 15:23:33 -04:00
|
|
|
import json
|
2014-05-13 16:09:19 -04:00
|
|
|
from ycmd.utils import ToUtf8IfNeeded
|
|
|
|
from ycmd import user_options_store
|
2012-08-04 20:46:54 -04:00
|
|
|
|
2014-03-04 05:47:43 -05:00
|
|
|
BUFFER_COMMAND_MAP = { 'same-buffer' : 'edit',
|
|
|
|
'horizontal-split' : 'split',
|
|
|
|
'vertical-split' : 'vsplit',
|
|
|
|
'new-tab' : 'tabedit' }
|
|
|
|
|
2012-08-04 20:46:54 -04:00
|
|
|
def CurrentLineAndColumn():
|
2012-09-24 22:20:33 -04:00
|
|
|
"""Returns the 0-based current line and 0-based current column."""
|
2012-08-04 20:46:54 -04:00
|
|
|
# See the comment in CurrentColumn about the calculation for the line and
|
|
|
|
# column number
|
|
|
|
line, column = vim.current.window.cursor
|
|
|
|
line -= 1
|
|
|
|
return line, column
|
|
|
|
|
|
|
|
|
|
|
|
def CurrentColumn():
|
2012-08-15 22:39:03 -04:00
|
|
|
"""Returns the 0-based current column. Do NOT access the CurrentColumn in
|
2013-06-09 20:31:17 -04:00
|
|
|
vim.current.line. It doesn't exist yet when the cursor is at the end of the
|
|
|
|
line. Only the chars before the current column exist in vim.current.line."""
|
2012-08-04 20:46:54 -04:00
|
|
|
|
|
|
|
# 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)
|
|
|
|
# columns are 0-based, while the line from that same tuple is 1-based.
|
|
|
|
# vim.buffers buffer objects OTOH have 0-based lines and columns.
|
|
|
|
# Pigs have wings and I'm a loopy purple duck. Everything makes sense now.
|
|
|
|
return vim.current.window.cursor[ 1 ]
|
|
|
|
|
|
|
|
|
2013-06-09 22:00:49 -04:00
|
|
|
def TextAfterCursor():
|
|
|
|
"""Returns the text after CurrentColumn."""
|
|
|
|
return vim.current.line[ CurrentColumn(): ]
|
|
|
|
|
|
|
|
|
2014-05-28 18:48:49 -04:00
|
|
|
# Expects version_string in 'MAJOR.MINOR.PATCH' format, e.g. '7.4.301'
|
|
|
|
def VimVersionAtLeast( version_string ):
|
|
|
|
major, minor, patch = [ int( x ) for x in version_string.split( '.' ) ]
|
|
|
|
|
|
|
|
# For Vim 7.4.301, v:version is '704'
|
|
|
|
actual_major_and_minor = GetIntValue( 'v:version' )
|
|
|
|
if actual_major_and_minor != major * 100 + minor:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return GetBoolValue( 'has("patch{0}")'.format( patch ) )
|
|
|
|
|
|
|
|
|
2013-09-06 02:43:14 -04:00
|
|
|
# Note the difference between buffer OPTIONS and VARIABLES; the two are not
|
|
|
|
# the same.
|
|
|
|
def GetBufferOption( buffer_object, option ):
|
2014-01-06 18:00:51 -05:00
|
|
|
# NOTE: We used to check for the 'options' property on the buffer_object which
|
|
|
|
# is available in recent versions of Vim and would then use:
|
|
|
|
#
|
|
|
|
# buffer_object.options[ option ]
|
|
|
|
#
|
|
|
|
# to read the value, BUT this caused annoying flickering when the
|
|
|
|
# buffer_object was a hidden buffer (with option = 'ft'). This was all due to
|
|
|
|
# a Vim bug. Until this is fixed, we won't use it.
|
2012-08-04 20:46:54 -04:00
|
|
|
|
2013-09-16 16:55:41 -04:00
|
|
|
to_eval = 'getbufvar({0}, "&{1}")'.format( buffer_object.number, option )
|
2013-09-06 02:43:14 -04:00
|
|
|
return GetVariableValue( to_eval )
|
|
|
|
|
|
|
|
|
2014-02-23 08:50:51 -05:00
|
|
|
def BufferModified( buffer_object ):
|
2014-03-23 04:33:27 -04:00
|
|
|
return bool( int( GetBufferOption( buffer_object, 'mod' ) ) )
|
2014-03-22 06:24:16 -04:00
|
|
|
|
2013-09-06 02:43:14 -04:00
|
|
|
|
2014-02-23 08:50:51 -05:00
|
|
|
def GetUnsavedAndCurrentBufferData():
|
2013-09-06 02:43:14 -04:00
|
|
|
buffers_data = {}
|
|
|
|
for buffer_object in vim.buffers:
|
|
|
|
if not ( BufferModified( buffer_object ) or
|
|
|
|
buffer_object == vim.current.buffer ):
|
|
|
|
continue
|
|
|
|
|
2013-10-06 22:45:47 -04:00
|
|
|
buffers_data[ GetBufferFilepath( buffer_object ) ] = {
|
2013-09-06 02:43:14 -04:00
|
|
|
'contents': '\n'.join( buffer_object ),
|
|
|
|
'filetypes': FiletypesForBuffer( buffer_object )
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffers_data
|
2012-08-04 20:46:54 -04:00
|
|
|
|
|
|
|
|
2013-10-03 13:14:31 -04:00
|
|
|
def GetBufferNumberForFilename( filename, open_file_if_needed = True ):
|
2014-01-04 17:28:27 -05:00
|
|
|
return GetIntValue( "bufnr('{0}', {1})".format(
|
2013-10-03 13:14:31 -04:00
|
|
|
os.path.realpath( filename ),
|
2014-01-04 17:28:27 -05:00
|
|
|
int( open_file_if_needed ) ) )
|
2013-10-03 13:14:31 -04:00
|
|
|
|
|
|
|
|
2013-10-06 22:45:47 -04:00
|
|
|
def GetCurrentBufferFilepath():
|
|
|
|
return GetBufferFilepath( vim.current.buffer )
|
|
|
|
|
|
|
|
|
2014-01-04 17:28:27 -05:00
|
|
|
def BufferIsVisible( buffer_number ):
|
|
|
|
if buffer_number < 0:
|
|
|
|
return False
|
|
|
|
window_number = GetIntValue( "bufwinnr({0})".format( buffer_number ) )
|
|
|
|
return window_number != -1
|
|
|
|
|
|
|
|
|
2013-10-06 22:45:47 -04:00
|
|
|
def GetBufferFilepath( buffer_object ):
|
|
|
|
if buffer_object.name:
|
|
|
|
return buffer_object.name
|
|
|
|
# Buffers that have just been created by a command like :enew don't have any
|
|
|
|
# buffer name so we use the buffer number for that.
|
|
|
|
return os.path.join( os.getcwd(), str( buffer_object.number ) )
|
|
|
|
|
|
|
|
|
2014-01-10 17:44:15 -05:00
|
|
|
# NOTE: This unplaces *all* signs in a buffer, not just the ones we placed. We
|
|
|
|
# used to track which signs we ended up placing and would then only unplace
|
|
|
|
# ours, but that causes flickering Vim since we have to call
|
|
|
|
# sign unplace <id> buffer=<buffer-num>
|
|
|
|
# in a loop. So we're forced to unplace all signs, which might conflict with
|
|
|
|
# other Vim plugins.
|
2014-01-10 17:39:52 -05:00
|
|
|
def UnplaceAllSignsInBuffer( buffer_number ):
|
2014-01-04 17:28:27 -05:00
|
|
|
if buffer_number < 0:
|
|
|
|
return
|
2014-01-10 17:39:52 -05:00
|
|
|
vim.command( 'sign unplace * buffer={0}'.format( buffer_number ) )
|
2014-01-04 17:28:27 -05:00
|
|
|
|
|
|
|
|
|
|
|
def PlaceSign( sign_id, line_num, buffer_num, is_error = True ):
|
|
|
|
sign_name = 'YcmError' if is_error else 'YcmWarning'
|
|
|
|
vim.command( 'sign place {0} line={1} name={2} buffer={3}'.format(
|
|
|
|
sign_id, line_num, sign_name, buffer_num ) )
|
|
|
|
|
|
|
|
|
2014-01-04 21:32:42 -05:00
|
|
|
def ClearYcmSyntaxMatches():
|
|
|
|
matches = VimExpressionToPythonType( 'getmatches()' )
|
|
|
|
for match in matches:
|
|
|
|
if match[ 'group' ].startswith( 'Ycm' ):
|
|
|
|
vim.eval( 'matchdelete({0})'.format( match[ 'id' ] ) )
|
|
|
|
|
|
|
|
|
|
|
|
# Returns the ID of the newly added match
|
2014-01-09 18:48:48 -05:00
|
|
|
# Both line and column numbers are 1-based
|
2014-01-05 16:30:22 -05:00
|
|
|
def AddDiagnosticSyntaxMatch( line_num,
|
|
|
|
column_num,
|
|
|
|
line_end_num = None,
|
|
|
|
column_end_num = None,
|
|
|
|
is_error = True ):
|
2014-01-04 21:32:42 -05:00
|
|
|
group = 'YcmErrorSection' if is_error else 'YcmWarningSection'
|
2014-01-05 16:30:22 -05:00
|
|
|
|
|
|
|
if not line_end_num:
|
|
|
|
line_end_num = line_num
|
|
|
|
|
2014-01-09 18:48:48 -05:00
|
|
|
line_num, column_num = LineAndColumnNumbersClamped( line_num, column_num )
|
|
|
|
line_end_num, column_end_num = LineAndColumnNumbersClamped( line_end_num,
|
|
|
|
column_end_num )
|
|
|
|
|
2014-01-05 16:30:22 -05:00
|
|
|
if not column_end_num:
|
|
|
|
return GetIntValue(
|
|
|
|
"matchadd('{0}', '\%{1}l\%{2}c')".format( group, line_num, column_num ) )
|
|
|
|
else:
|
|
|
|
return GetIntValue(
|
2014-05-19 14:10:03 -04:00
|
|
|
"matchadd('{0}', '\%{1}l\%{2}c\_.\\{{-}}\%{3}l\%{4}c')".format(
|
2014-01-05 16:30:22 -05:00
|
|
|
group, line_num, column_num, line_end_num, column_end_num ) )
|
2014-01-04 21:32:42 -05:00
|
|
|
|
|
|
|
|
2014-01-09 18:48:48 -05:00
|
|
|
# Clamps the line and column numbers so that they are not past the contents of
|
|
|
|
# the buffer. Numbers are 1-based.
|
|
|
|
def LineAndColumnNumbersClamped( line_num, column_num ):
|
|
|
|
new_line_num = line_num
|
|
|
|
new_column_num = column_num
|
|
|
|
|
|
|
|
max_line = len( vim.current.buffer )
|
|
|
|
if line_num and line_num > max_line:
|
|
|
|
new_line_num = max_line
|
|
|
|
|
|
|
|
max_column = len( vim.current.buffer[ new_line_num - 1 ] )
|
|
|
|
if column_num and column_num > max_column:
|
|
|
|
new_column_num = max_column
|
|
|
|
|
|
|
|
return new_line_num, new_column_num
|
|
|
|
|
|
|
|
|
2014-01-08 22:09:40 -05:00
|
|
|
def SetLocationList( diagnostics ):
|
|
|
|
"""Diagnostics should be in qflist format; see ":h setqflist" for details."""
|
|
|
|
vim.eval( 'setloclist( 0, {0} )'.format( json.dumps( diagnostics ) ) )
|
|
|
|
|
|
|
|
|
|
|
|
def ConvertDiagnosticsToQfList( diagnostics ):
|
|
|
|
def ConvertDiagnosticToQfFormat( diagnostic ):
|
|
|
|
# see :h getqflist for a description of the dictionary fields
|
|
|
|
# Note that, as usual, Vim is completely inconsistent about whether
|
|
|
|
# line/column numbers are 1 or 0 based in its various APIs. Here, it wants
|
|
|
|
# them to be 1-based.
|
|
|
|
location = diagnostic[ 'location' ]
|
2014-05-29 16:25:43 -04:00
|
|
|
line_num = location[ 'line_num' ] + 1
|
|
|
|
|
|
|
|
# libclang can give us diagnostics that point "outside" the file; Vim borks
|
|
|
|
# on these.
|
|
|
|
if line_num < 1:
|
|
|
|
line_num = 1
|
|
|
|
|
2014-01-08 22:09:40 -05:00
|
|
|
return {
|
|
|
|
'bufnr' : GetBufferNumberForFilename( location[ 'filepath' ] ),
|
2014-05-29 16:25:43 -04:00
|
|
|
'lnum' : line_num,
|
2014-01-08 22:09:40 -05:00
|
|
|
'col' : location[ 'column_num' ] + 1,
|
2014-01-13 13:00:05 -05:00
|
|
|
'text' : ToUtf8IfNeeded( diagnostic[ 'text' ] ),
|
2014-01-08 22:09:40 -05:00
|
|
|
'type' : diagnostic[ 'kind' ],
|
|
|
|
'valid' : 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return [ ConvertDiagnosticToQfFormat( x ) for x in diagnostics ]
|
|
|
|
|
|
|
|
|
2013-10-04 15:23:33 -04:00
|
|
|
# Given a dict like {'a': 1}, loads it into Vim as if you ran 'let g:a = 1'
|
|
|
|
# When |overwrite| is True, overwrites the existing value in Vim.
|
|
|
|
def LoadDictIntoVimGlobals( new_globals, overwrite = True ):
|
|
|
|
extend_option = '"force"' if overwrite else '"keep"'
|
|
|
|
|
|
|
|
# We need to use json.dumps because that won't use the 'u' prefix on strings
|
|
|
|
# which Vim would bork on.
|
2013-10-04 18:44:16 -04:00
|
|
|
vim.eval( 'extend( g:, {0}, {1})'.format( json.dumps( new_globals ),
|
|
|
|
extend_option ) )
|
2013-10-04 15:23:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Changing the returned dict will NOT change the value in Vim.
|
2013-10-06 21:26:59 -04:00
|
|
|
def GetReadOnlyVimGlobals( force_python_objects = False ):
|
|
|
|
if force_python_objects:
|
|
|
|
return vim.eval( 'g:' )
|
|
|
|
|
2013-10-04 15:23:33 -04:00
|
|
|
try:
|
|
|
|
# vim.vars is fairly new so it might not exist
|
|
|
|
return vim.vars
|
|
|
|
except:
|
|
|
|
return vim.eval( 'g:' )
|
|
|
|
|
|
|
|
|
2013-10-26 19:22:43 -04:00
|
|
|
def VimExpressionToPythonType( vim_expression ):
|
|
|
|
result = vim.eval( vim_expression )
|
|
|
|
if not isinstance( result, basestring ):
|
|
|
|
return result
|
|
|
|
try:
|
|
|
|
return int( result )
|
|
|
|
except ValueError:
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2014-03-22 06:24:16 -04:00
|
|
|
def HiddenEnabled( buffer_object ):
|
2014-03-23 04:33:27 -04:00
|
|
|
return bool( int( GetBufferOption( buffer_object, 'hid' ) ) )
|
2014-03-22 06:24:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
def BufferIsUsable( buffer_object ):
|
|
|
|
return not BufferModified( buffer_object ) or HiddenEnabled( buffer_object )
|
|
|
|
|
|
|
|
|
2014-05-19 15:37:30 -04:00
|
|
|
def EscapedFilepath( filepath ):
|
|
|
|
return filepath.replace( ' ' , r'\ ' )
|
|
|
|
|
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
# Both |line| and |column| need to be 1-based
|
|
|
|
def JumpToLocation( filename, line, column ):
|
|
|
|
# Add an entry to the jumplist
|
2013-04-01 00:01:38 -04:00
|
|
|
vim.command( "normal! m'" )
|
2013-03-31 23:38:29 -04:00
|
|
|
|
2013-10-06 22:45:47 -04:00
|
|
|
if filename != GetCurrentBufferFilepath():
|
2013-03-31 23:38:29 -04:00
|
|
|
# We prefix the command with 'keepjumps' so that opening the file is not
|
|
|
|
# recorded in the jumplist. So when we open the file and move the cursor to
|
|
|
|
# a location in it, the user can use CTRL-O to jump back to the original
|
|
|
|
# location, not to the start of the newly opened file.
|
|
|
|
# Sadly this fails on random occasions and the undesired jump remains in the
|
|
|
|
# jumplist.
|
2014-03-04 05:47:43 -05:00
|
|
|
user_command = user_options_store.Value( 'goto_buffer_command' )
|
|
|
|
command = BUFFER_COMMAND_MAP.get( user_command, 'edit' )
|
2014-03-22 06:24:16 -04:00
|
|
|
if command == 'edit' and not BufferIsUsable( vim.current.buffer ):
|
2014-03-04 05:47:43 -05:00
|
|
|
command = 'split'
|
2014-05-19 15:37:30 -04:00
|
|
|
vim.command( 'keepjumps {0} {1}'.format( command,
|
|
|
|
EscapedFilepath( filename ) ) )
|
2013-03-31 23:38:29 -04:00
|
|
|
vim.current.window.cursor = ( line, column - 1 )
|
|
|
|
|
|
|
|
# Center the screen on the jumped-to location
|
|
|
|
vim.command( 'normal! zz' )
|
|
|
|
|
|
|
|
|
2013-09-06 02:43:14 -04:00
|
|
|
def NumLinesInBuffer( buffer_object ):
|
2012-08-04 20:46:54 -04:00
|
|
|
# This is actually less than obvious, that's why it's wrapped in a function
|
2013-09-06 02:43:14 -04:00
|
|
|
return len( buffer_object )
|
2012-08-04 20:46:54 -04:00
|
|
|
|
|
|
|
|
2013-10-01 13:41:34 -04:00
|
|
|
# Calling this function from the non-GUI thread will sometimes crash Vim. At the
|
|
|
|
# time of writing, YCM only uses the GUI thread inside Vim (this used to not be
|
|
|
|
# the case).
|
2012-08-04 20:46:54 -04:00
|
|
|
def PostVimMessage( message ):
|
2013-10-15 14:19:56 -04:00
|
|
|
vim.command( "echohl WarningMsg | echom '{0}' | echohl None"
|
|
|
|
.format( EscapeForVim( str( message ) ) ) )
|
|
|
|
|
2014-01-04 17:28:27 -05:00
|
|
|
|
2013-10-15 14:19:56 -04:00
|
|
|
# Unlike PostVimMesasge, this supports messages with newlines in them because it
|
|
|
|
# uses 'echo' instead of 'echomsg'. This also means that the message will NOT
|
|
|
|
# appear in Vim's message log.
|
|
|
|
def PostMultiLineNotice( message ):
|
|
|
|
vim.command( "echohl WarningMsg | echo '{0}' | echohl None"
|
2013-09-27 16:52:04 -04:00
|
|
|
.format( EscapeForVim( str( message ) ) ) )
|
2012-08-04 20:46:54 -04:00
|
|
|
|
|
|
|
|
2013-02-25 04:49:51 -05:00
|
|
|
def PresentDialog( message, choices, default_choice_index = 0 ):
|
|
|
|
"""Presents the user with a dialog where a choice can be made.
|
|
|
|
This will be a dialog for gvim users or a question in the message buffer
|
|
|
|
for vim users or if `set guioptions+=c` was used.
|
|
|
|
|
|
|
|
choices is list of alternatives.
|
|
|
|
default_choice_index is the 0-based index of the default element
|
|
|
|
that will get choosen if the user hits <CR>. Use -1 for no default.
|
|
|
|
|
|
|
|
PresentDialog will return a 0-based index into the list
|
|
|
|
or -1 if the dialog was dismissed by using <Esc>, Ctrl-C, etc.
|
|
|
|
|
|
|
|
See also:
|
|
|
|
:help confirm() in vim (Note that vim uses 1-based indexes)
|
|
|
|
|
|
|
|
Example call:
|
|
|
|
PresentDialog("Is this a nice example?", ["Yes", "No", "May&be"])
|
|
|
|
Is this a nice example?
|
|
|
|
[Y]es, (N)o, May(b)e:"""
|
|
|
|
to_eval = "confirm('{0}', '{1}', {2})".format( EscapeForVim( message ),
|
|
|
|
EscapeForVim( "\n" .join( choices ) ), default_choice_index + 1 )
|
|
|
|
return int( vim.eval( to_eval ) ) - 1
|
|
|
|
|
|
|
|
|
|
|
|
def Confirm( message ):
|
|
|
|
return bool( PresentDialog( message, [ "Ok", "Cancel" ] ) == 0 )
|
|
|
|
|
|
|
|
|
2014-01-04 19:45:34 -05:00
|
|
|
def EchoText( text, log_as_message = True ):
|
2013-02-21 13:50:38 -05:00
|
|
|
def EchoLine( text ):
|
2014-01-04 19:45:34 -05:00
|
|
|
command = 'echom' if log_as_message else 'echo'
|
|
|
|
vim.command( "{0} '{1}'".format( command, EscapeForVim( text ) ) )
|
2013-02-21 13:50:38 -05:00
|
|
|
|
2014-01-05 19:09:40 -05:00
|
|
|
for line in str( text ).split( '\n' ):
|
2013-02-21 13:50:38 -05:00
|
|
|
EchoLine( line )
|
2012-08-15 22:39:03 -04:00
|
|
|
|
|
|
|
|
2014-01-09 17:11:15 -05:00
|
|
|
# Echos text but truncates it so that it all fits on one line
|
2014-01-04 19:45:34 -05:00
|
|
|
def EchoTextVimWidth( text ):
|
|
|
|
vim_width = GetIntValue( '&columns' )
|
2014-01-13 13:00:05 -05:00
|
|
|
truncated_text = ToUtf8IfNeeded( text )[ : int( vim_width * 0.9 ) ]
|
2014-01-04 19:45:34 -05:00
|
|
|
truncated_text.replace( '\n', ' ' )
|
2014-01-09 16:49:06 -05:00
|
|
|
|
|
|
|
old_ruler = GetIntValue( '&ruler' )
|
|
|
|
old_showcmd = GetIntValue( '&showcmd' )
|
|
|
|
vim.command( 'set noruler noshowcmd' )
|
|
|
|
|
2014-01-04 19:45:34 -05:00
|
|
|
EchoText( truncated_text, False )
|
|
|
|
|
2014-01-09 16:49:06 -05:00
|
|
|
vim.command( 'let &ruler = {0}'.format( old_ruler ) )
|
|
|
|
vim.command( 'let &showcmd = {0}'.format( old_showcmd ) )
|
|
|
|
|
2014-01-04 19:45:34 -05:00
|
|
|
|
2012-08-04 20:46:54 -04:00
|
|
|
def EscapeForVim( text ):
|
|
|
|
return text.replace( "'", "''" )
|
|
|
|
|
|
|
|
|
2013-01-31 19:19:56 -05:00
|
|
|
def CurrentFiletypes():
|
2013-09-06 02:43:14 -04:00
|
|
|
return vim.eval( "&filetype" ).split( '.' )
|
2012-08-05 16:12:10 -04:00
|
|
|
|
|
|
|
|
2013-03-03 13:48:34 -05:00
|
|
|
def FiletypesForBuffer( buffer_object ):
|
|
|
|
# NOTE: Getting &ft for other buffers only works when the buffer has been
|
|
|
|
# visited by the user at least once, which is true for modified buffers
|
2013-09-06 02:43:14 -04:00
|
|
|
return GetBufferOption( buffer_object, 'ft' ).split( '.' )
|
2013-03-03 13:48:34 -05:00
|
|
|
|
|
|
|
|
2012-08-05 16:12:10 -04:00
|
|
|
def GetVariableValue( variable ):
|
|
|
|
return vim.eval( variable )
|
2013-02-25 04:49:17 -05:00
|
|
|
|
|
|
|
|
|
|
|
def GetBoolValue( variable ):
|
|
|
|
return bool( int( vim.eval( variable ) ) )
|
2013-09-02 17:45:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
def GetIntValue( variable ):
|
|
|
|
return int( vim.eval( variable ) )
|
2013-10-22 13:51:37 -04:00
|
|
|
|