~neovim-ppa/neovim-ppa/python-neovim

« back to all changes in this revision

Viewing changes to neovim/vim.py

  • Committer: Thiago de Arruda
  • Date: 2014-08-09 16:06:27 UTC
  • mfrom: (44.2.7)
  • Revision ID: git-v1:04f48115bd9263b8f370b8b38c411d468a988c69
Tags: 0.0.8
Merge pull request #17 from tarruda/refactor-concurrency

Refactor concurrency model

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import os
2
 
from util import RemoteSequence, RemoteMap, Current, VimError, VimTimeout
 
2
from util import RemoteSequence, RemoteMap, Current, VimError
3
3
 
4
4
os_chdir = os.chdir
5
5
os_fchdir = os.fchdir
26
26
                                lambda k, v: vim.set_option(k, v))
27
27
        vim.channel_id = channel_id
28
28
        vim.error = VimError
29
 
        vim.timeout = VimTimeout
30
29
 
31
30
    def foreach_rtp(self, cb):
32
31
        """