@@ -41,18 +41,18 @@ func (c *ServeCommand) flags() *flag.FlagSet {
41
41
42
42
fs .IntVar (& c .port , "port" , 0 , "port number to listen on (turns server into TCP mode)" )
43
43
fs .StringVar (& c .logFilePath , "log-file" , "" , "path to a file to log into with support " +
44
- "for variables (e.g. Timestamp, Pid, Ppid ) via Go template syntax {{.VarName }}" )
44
+ "for variables (e.g. timestamp, pid, ppid ) via Go template syntax {{varName }}" )
45
45
fs .StringVar (& c .tfExecPath , "tf-exec" , "" , "(DEPRECATED) path to Terraform binary. Use terraformExecPath LSP config option instead." )
46
46
fs .StringVar (& c .tfExecTimeout , "tf-exec-timeout" , "" , "(DEPRECATED) Overrides Terraform execution timeout (e.g. 30s)" )
47
47
fs .StringVar (& c .tfExecLogPath , "tf-log-file" , "" , "(DEPRECATED) path to a file for Terraform executions" +
48
- " to be logged into with support for variables (e.g. Timestamp, Pid, Ppid ) via Go template" +
49
- " syntax {{.VarName }}" )
48
+ " to be logged into with support for variables (e.g. timestamp, pid, ppid ) via Go template" +
49
+ " syntax {{varName }}" )
50
50
fs .StringVar (& c .cpuProfile , "cpuprofile" , "" , "file into which to write CPU profile (if not empty)" +
51
- " with support for variables (e.g. Timestamp, Pid, Ppid ) via Go template" +
52
- " syntax {{.VarName }}" )
51
+ " with support for variables (e.g. timestamp, pid, ppid ) via Go template" +
52
+ " syntax {{varName }}" )
53
53
fs .StringVar (& c .memProfile , "memprofile" , "" , "file into which to write memory profile (if not empty)" +
54
- " with support for variables (e.g. Timestamp, Pid, Ppid ) via Go template" +
55
- " syntax {{.VarName }}" )
54
+ " with support for variables (e.g. timestamp, pid, ppid ) via Go template" +
55
+ " syntax {{varName }}" )
56
56
fs .IntVar (& c .reqConcurrency , "req-concurrency" , 0 , fmt .Sprintf ("number of RPC requests to process concurrently," +
57
57
" defaults to %d, concurrency lower than 2 is not recommended" , langserver .DefaultConcurrency ()))
58
58
0 commit comments