From 4f7adcca7c291c9dfd0ba577fd70c7590711152d Mon Sep 17 00:00:00 2001 From: Andrew Whatson Date: Wed, 28 Aug 2019 00:15:33 +1000 Subject: [PATCH] Add ln to +sh-builtin-keywords --- modules/lang/sh/config.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/lang/sh/config.el b/modules/lang/sh/config.el index 34af5d4d0..498751fdc 100644 --- a/modules/lang/sh/config.el +++ b/modules/lang/sh/config.el @@ -1,9 +1,9 @@ ;;; lang/sh/config.el -*- lexical-binding: t; -*- (defvar +sh-builtin-keywords - '("cat" "cat" "cd" "chmod" "chown" "cp" "curl" "date" "echo" "find" "git" - "grep" "kill" "less" "ls" "make" "mkdir" "mv" "pgrep" "pkill" "pwd" - "rm" "sleep" "sudo" "touch") + '("cat" "cd" "chmod" "chown" "cp" "curl" "date" "echo" "find" "git" "grep" + "kill" "less" "ln" "ls" "make" "mkdir" "mv" "pgrep" "pkill" "pwd" "rm" + "sleep" "sudo" "touch") "A list of common shell commands to be fontified especially in `sh-mode'.")