coffee-nvim Nvim 的 Coffee Host开源项目

我要开发同款
匿名用户2015年10月08日
49阅读
开发技术Python
所属分类应用工具、文档/文本编辑
授权协议GPL

作品详情

这个插件给coffeescripting(node.js)提供了一个rpc-pluginhost,以及一组由vimscript启发的指令。

Lib

Nvim = {   # neovim-client API...  # all functions can be called sync/async depending if you pass a callback }# Global objectscurrent.buffer == Nvim.getCurrentBuffer()current.window == ...current.tab    == ...# buffers: listed buffers onlybuffers == Nvim.getBuffers().filter((b) -> b.listed)windows == Nvim.getWindows()tabs    == Nvim.getTabpages()# Buffer properties:buffer.number: Read-onlybuffer.name:   bufnamebuffer.lenght: buffer.lineCount()buffer.listed: buffer.getOption('buflisted')buffer.type:   buffer.getOption('buftype')buffer.valid:  buffer.isValid()# Option & Var accessbuffer[':VARNAME'] # => buffer.getVar('VARNAME')buffer['&OPTNAME'] # => buffer.getOption('OPTNAME')# same goes for window & tabpage# Cursorcursor                          # => [line, row]cursor[0] == cursor.line        # truecursor[1] == cursor.row         # truecursor = 2                      # => position [2, 0]cursor = [10, 3]                # => position [10, 3]cursor.row += 5                 # => position [10, 8]cursor = current.buffer.length  # => last linecursor += 10                # => Error# equivalent to: cursor = [10, 8] + 10# Functionscall.getcmdline() # => :call getcmdline()# => returns the function result# Otherecho()echohl()input('keys<esc>')execute('wincmd w')get('varname')set('option', 'value') OR set('option?')

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论