I am looking for a way for downlight columns in Notepad ++.
- the COBOL compiler ignores the first 6 columns, and all characters starting with column 73 (in any case, are ignored in column 80, 81+).
- The seventh character has a special meaning (comment, debugging, ...).
- From the 8th to the 11th character also have a special meaning.
To view the code, it is enough to do a reg-ex search for ^......., because it ^.{7}does not work. Using the โMark Patternโ option, click โSearch All,โ and you get the first 7 columns.
The problem is that when you edit the code, the marking expands / contracts / moves, and you need to repeat the mark / search.
I am using NotePad ++ 5.03 ansi w / o unicode, COBOL highlighting installed from its site.
edit: I also tried 'Options' -' View'-panel-'Primary View' - 'show vertical limit', but this is displayed in all documents and for only one column position
source
share