From 58f1bb8eb48c7822c1bbcaac5a8d5c2bf5f2f3ab Mon Sep 17 00:00:00 2001 From: jkone27 Date: Sat, 27 Jan 2024 21:08:35 +0100 Subject: [PATCH 1/3] add missing keyword list and extra information --- src/FsAutoComplete.Core/KeywordList.fs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/FsAutoComplete.Core/KeywordList.fs b/src/FsAutoComplete.Core/KeywordList.fs index e9e68f828..f76f80407 100644 --- a/src/FsAutoComplete.Core/KeywordList.fs +++ b/src/FsAutoComplete.Core/KeywordList.fs @@ -28,14 +28,16 @@ module KeywordList = |> dict let hashDirectives = - [ "r", "References an assembly" - "load", "Reads a source file, compiles it, and runs it." + [ "r", "References an assembly, or a nuget: package, or a paket: reference" + "load", "Reference other .fsx scripts or .fs files, by compiling and running them" "I", "Specifies an assembly search path in quotation marks." "light", "Enables or disables lightweight syntax, for compatibility with other versions of ML" "if", "Supports conditional compilation" "else", "Supports conditional compilation" "endif", "Supports conditional compilation" "nowarn", "Disables a compiler warning or warnings" + "quit", "exits the interactive session" + "time", "toggles whether to display performance information" "line", "Indicates the original source code line" ] |> dict From bbbc81d437a70177f9327dc27bc7ed70dcba1f6c Mon Sep 17 00:00:00 2001 From: jkone27 Date: Sat, 27 Jan 2024 21:12:46 +0100 Subject: [PATCH 2/3] description adjustment --- src/FsAutoComplete.Core/KeywordList.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FsAutoComplete.Core/KeywordList.fs b/src/FsAutoComplete.Core/KeywordList.fs index f76f80407..69ad532b8 100644 --- a/src/FsAutoComplete.Core/KeywordList.fs +++ b/src/FsAutoComplete.Core/KeywordList.fs @@ -29,7 +29,7 @@ module KeywordList = let hashDirectives = [ "r", "References an assembly, or a nuget: package, or a paket: reference" - "load", "Reference other .fsx scripts or .fs files, by compiling and running them" + "load", "References a source .fsx script or .fs file, by compiling and running it." "I", "Specifies an assembly search path in quotation marks." "light", "Enables or disables lightweight syntax, for compatibility with other versions of ML" "if", "Supports conditional compilation" From 2c9577809ff792c28ac7c4aea9ee183dc3d8bb3f Mon Sep 17 00:00:00 2001 From: jkone27 Date: Tue, 30 Jan 2024 17:30:36 +0100 Subject: [PATCH 3/3] remove paket as not in use Co-authored-by: Chet Husk --- src/FsAutoComplete.Core/KeywordList.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FsAutoComplete.Core/KeywordList.fs b/src/FsAutoComplete.Core/KeywordList.fs index 69ad532b8..07238f205 100644 --- a/src/FsAutoComplete.Core/KeywordList.fs +++ b/src/FsAutoComplete.Core/KeywordList.fs @@ -28,7 +28,7 @@ module KeywordList = |> dict let hashDirectives = - [ "r", "References an assembly, or a nuget: package, or a paket: reference" + [ "r", "References an assembly or a nuget: package" "load", "References a source .fsx script or .fs file, by compiling and running it." "I", "Specifies an assembly search path in quotation marks." "light", "Enables or disables lightweight syntax, for compatibility with other versions of ML"