We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942b73d commit f030ae0Copy full SHA for f030ae0
neovim/api/nvim.py
@@ -15,7 +15,6 @@
15
16
17
os_chdir = os.chdir
18
-os_fchdir = os.fchdir
19
20
21
class Nvim(object):
@@ -152,11 +151,6 @@ def chdir(self, dir_path):
152
151
os_chdir(dir_path)
153
return self._session.request('vim_change_directory', dir_path)
154
155
- def fchdir(self, dir_fd):
156
- """Run os.chdir, then all appropriate vim stuff."""
157
- os_fchdir(dir_fd)
158
- return self._session.request('vim_change_directory', os.getcwd())
159
-
160
def feedkeys(self, keys, options='', escape_csi=True):
161
"""Push `keys` to Nvim user input buffer.
162
0 commit comments