Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenEditorAction.py: added vi to list of editors #5280

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions coalib/results/result_actions/OpenEditorAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
'file_arg_template': '{filename} +{line}',
'gui': False
},
'vi': {
'file_arg_template': '{filename} +{line}',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am pretty confident that the +{line} support was added in vim, not vi.

'gui': False
},
'nano': {
'file_arg_template': '+{line},{column} {filename} ',
'gui': False
Expand Down