You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
install_prelude() {
printf" Cloning Emacs Prelude's GitHub repository...\n$RESET"if [ x$PRELUDE_VERBOSE!= x ];then
/usr/bin/env git clone $PRELUDE_URL"$PRELUDE_INSTALL_DIR"else
/usr/bin/env git clone $PRELUDE_URL"$PRELUDE_INSTALL_DIR">/dev/null
fiif! [ $?-eq 0 ];thenprintf"$RED A fatal error occurred during Prelude's installation. Aborting..."exit 1
fi
}
make_prelude_dirs() {
printf" Creating the required directories.\n$RESET"
mkdir -p "$PRELUDE_INSTALL_DIR/savefile"
}
When overlay string PRELUDE_INSTALL_DIR inside "$PRELUDE_INSTALL_DIR" with symbol-overlay-put, it would not highlight $PRELUDE_INSTALL_DIR inside "$PRELUDE_INSTALL_DIR/savefile"
The text was updated successfully, but these errors were encountered:
Wondering if this feature was considered? Doesn't seem to be in current master branch.
In addition to @snowman's original example, matching synonyms is another use-case. It would be great to have a single symbol overlay on a regex, for example AB-?16\|XYZ, which matches three synonyms.
One possible UI would be:
yank symbol at point into the minibuffer
let me edit the minibuffer to include a regex
do symbol overlay on my regex
snowman
changed the title
Request: Overlay regexp?
Request: Add regexp support
Nov 11, 2020
Wanted
Like
highlight-regexp
, but with overlay functionality.Reproduction steps
sample code extracted for illustration from https://raw.githubusercontent.com/bbatsov/prelude/master/utils/installer.sh
When overlay string
PRELUDE_INSTALL_DIR
inside"$PRELUDE_INSTALL_DIR"
withsymbol-overlay-put
, it would not highlight$PRELUDE_INSTALL_DIR
inside"$PRELUDE_INSTALL_DIR/savefile"
The text was updated successfully, but these errors were encountered: