Add ln to +sh-builtin-keywords

This commit is contained in:
Andrew Whatson 2019-08-28 00:15:33 +10:00
parent e498a7e2cb
commit 4f7adcca7c

View file

@ -1,9 +1,9 @@
;;; lang/sh/config.el -*- lexical-binding: t; -*- ;;; lang/sh/config.el -*- lexical-binding: t; -*-
(defvar +sh-builtin-keywords (defvar +sh-builtin-keywords
'("cat" "cat" "cd" "chmod" "chown" "cp" "curl" "date" "echo" "find" "git" '("cat" "cd" "chmod" "chown" "cp" "curl" "date" "echo" "find" "git" "grep"
"grep" "kill" "less" "ls" "make" "mkdir" "mv" "pgrep" "pkill" "pwd" "kill" "less" "ln" "ls" "make" "mkdir" "mv" "pgrep" "pkill" "pwd" "rm"
"rm" "sleep" "sudo" "touch") "sleep" "sudo" "touch")
"A list of common shell commands to be fontified especially in `sh-mode'.") "A list of common shell commands to be fontified especially in `sh-mode'.")