Hi,
I found that colorer in Far editor has problem to recognize << (left shift operator) in sh script. This operator is allowed in arithmetic evaluation. For example in the file test.sh containing
echo Hello
X=$(( 31>>3 )) # right shift operator is ok
X=$(( 1<<3 )) # left shift operator confuses colorer
echo X=${X}
the rest of the file after << is not recognized by the colorer.
Hi, I found that colorer in Far editor has problem to recognize << (left shift operator) in sh script. This operator is allowed in arithmetic evaluation. For example in the file test.sh containing
echo Hello X=$(( 31>>3 )) # right shift operator is ok X=$(( 1<<3 )) # left shift operator confuses colorer echo X=${X}
the rest of the file after << is not recognized by the colorer.