Merge pull request #1716 from flatwhatson/sh-keywords

Add ln to +sh-builtin-keywords
This commit is contained in:
Henrik Lissner 2019-09-06 00:50:04 -04:00 committed by GitHub
commit 01c9ec0c7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'.")