Added an option to settings for showing or hiding symlink destinations.
Note:
This actually hides the special highlighting for symlink, As its highlighting depends on the -> mark being present and I've tried to reflect that in the documentation.
Changing this behavior may need changes to the way symlinks are represented so we can highlight them without the destination path being present.
New Version Info
Author's Instructions
[ ] Derive a new MAJOR.MINOR.PATCH version number. Increment the:
MAJOR version when you make incompatible API changes
MINOR version when you add functionality in a backwards-compatible manner
PATCH version when you make backwards-compatible bug fixes
[ ] Update CHANGELOG.md, following the established pattern.
Collaborator's Instructions
[ ] Review CHANGELOG.md, suggesting a different version number if necessary.
[ ] After merging, tag the commit using these (Mac-compatible) bash commands:
git checkout master
git pull
sed -n "$(grep -n -m2 '####' CHANGELOG.md | cut -f1 -d: | sed 'N;s/\n/,/')p" CHANGELOG.md | sed '$d'
git tag -a $(read -p "Tag Name: " tag;echo $tag) -m"$(git show --quiet --pretty=%s)";git push origin --tags
Description of Changes
Added an option to settings for showing or hiding symlink destinations. Note: This actually hides the special highlighting for symlink, As its highlighting depends on the
->
mark being present and I've tried to reflect that in the documentation. Changing this behavior may need changes to the way symlinks are represented so we can highlight them without the destination path being present.New Version Info
Author's Instructions
MAJOR.MINOR.PATCH
version number. Increment the:MAJOR
version when you make incompatible API changesMINOR
version when you add functionality in a backwards-compatible mannerPATCH
version when you make backwards-compatible bug fixesCollaborator's Instructions