Closed
Bug 769585
Opened 13 years ago
Closed 13 years ago
Fix vim modelines
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
FIXED
mozilla16
People
(Reporter: justin.lebar+bug, Assigned: justin.lebar+bug)
Details
We have a number of invalid Vim modelines in Gecko. These are really annoying; Vim throws a fit when you try to open one of these files.
$ hg locate | xargs grep 'vim\s*:[^:]*$' | grep -v '\<set\>'
| Assignee | ||
Updated•13 years ago
|
Assignee: nobody → justin.lebar+bug
| Assignee | ||
Comment 1•13 years ago
|
||
Hm, that's not quite the right search string...
| Assignee | ||
Comment 2•13 years ago
|
||
I think this is better...
$ git grep 'vim:.*:' | grep -v 'set' | grep -v ':\s*$'
or if you prefer
$ hg locate | xargs grep 'vim:.*:' | grep -v 'set' | grep -v ':\s*$'
| Assignee | ||
Comment 3•13 years ago
|
||
Comment 4•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla16
You need to log in
before you can comment on or make changes to this bug.
Description
•