We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062f4ad commit 27eba9aCopy full SHA for 27eba9a
1 file changed
src/output.py
@@ -107,7 +107,7 @@ def joinFilesIntoCommand(filesAndLineNumbers):
107
cmd += ' +%d %s' % (firstLineNum, firstFilePath)
108
for (filePath, lineNum) in filesAndLineNumbers[1:]:
109
cmd += ' +"tabnew +%d %s"' % (lineNum, filePath)
110
- elif editor == 'vim':
+ elif editor in ['vim', 'mvim'] and not os.environ.get('FPP_DISABLE_SPLIT'):
111
firstFilePath, firstLineNum = filesAndLineNumbers[0]
112
113
0 commit comments