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
"talk with the editor via TCP port (4096 as default)"
66
+
"talk with the editor via TCP port (4096 as default)",
67
+
Option
68
+
['V']
69
+
["version"]
70
+
(NoArg (\opts -> opts {optVersion =True}))
71
+
"print version information and exit"
65
72
]
66
73
67
-
usage::String
68
-
usage =
74
+
versionNumber::Int
75
+
versionNumber =5
76
+
77
+
versionString::String
78
+
versionString =
69
79
#if MIN_VERSION_Agda(2,7,0)
70
-
"Agda v2.7.0.1 Language Server v4\nUsage: als [Options...]\n"
80
+
"Agda v2.7.0.1 Language Server v"<>show versionNumber
71
81
#elif MIN_VERSION_Agda(2,6,4)
72
-
"Agda v2.6.4.3 Language Server v4\nUsage: als [Options...]\n"
82
+
"Agda v2.6.4.3 Language Server v"<>show versionNumber
73
83
#elif MIN_VERSION_Agda(2,6,3)
74
-
"Agda v2.6.3 Language Server v4\nUsage: als [Options...]\n"
84
+
"Agda v2.6.3 Language Server v"<>show versionNumber
75
85
#else
76
-
"Unsupported Agda version\n"
86
+
error"Unsupported Agda version"
77
87
#endif
78
88
89
+
usage::String
90
+
usage = versionString <>"\nUsage: als [Options...]\n"
91
+
79
92
usageAboutAgdaOptions::String
80
93
usageAboutAgdaOptions ="\n +AGDA [Options for Agda ...] -AGDA\n To pass command line options to Agda, put them in between '+AGDA' and '-AGDA'\n For example:\n als -p=3000 +AGDA --cubical -AGDA\n If you are using agda-mode on VS Code, put them in the Settings at:\n agdaMode.connection.commandLineOptions\n"
0 commit comments