Skip to content

Commit

Permalink
Release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
huderlem committed Nov 10, 2024
1 parent 9b3a488 commit a702ec1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/huderlem/poryscript-pls
go 1.17

require (
github.com/huderlem/poryscript v0.0.0-20240816000600-ab7aa38068e9
github.com/huderlem/poryscript v0.0.0-20241110203432-f8cedb5a370b
github.com/sourcegraph/go-lsp v0.0.0-20200429204803-219e11d77f5d
github.com/sourcegraph/jsonrpc2 v0.1.0
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWm
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/huderlem/poryscript v0.0.0-20240816000600-ab7aa38068e9 h1:n7V8ocyzTMMQo7C4MIYDDkl71qZMr3hLJSQgsc7s8+M=
github.com/huderlem/poryscript v0.0.0-20240816000600-ab7aa38068e9/go.mod h1:MnP/SQUqwI0gdrSC388x39hss09TCEXQ/mCgDSWVWDE=
github.com/huderlem/poryscript v0.0.0-20241110203432-f8cedb5a370b h1:9yf9JIQo7h7Ir4pEHWp31m2Eh+LD1/oTGZmWKH0Rf+0=
github.com/huderlem/poryscript v0.0.0-20241110203432-f8cedb5a370b/go.mod h1:MnP/SQUqwI0gdrSC388x39hss09TCEXQ/mCgDSWVWDE=
github.com/sourcegraph/go-lsp v0.0.0-20200429204803-219e11d77f5d h1:afLbh+ltiygTOB37ymZVwKlJwWZn+86syPTbrrOAydY=
github.com/sourcegraph/go-lsp v0.0.0-20200429204803-219e11d77f5d/go.mod h1:SULmZY7YNBsvNiQbrb/BEDdEJ84TGnfyUQxaHt8t8rY=
github.com/sourcegraph/jsonrpc2 v0.1.0 h1:ohJHjZ+PcaLxDUjqk2NC3tIGsVa5bXThe1ZheSXOjuk=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/huderlem/poryscript-pls/server"
)

const version = "1.0.7"
const version = "1.0.8"

func parseOptions() {
helpPtr := flag.Bool("h", false, "show poryscript-pls help information")
Expand Down
7 changes: 7 additions & 0 deletions parse/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,13 @@ var KeywordCommands = []Command{
CompletionKind: lsp.CIKFunction,
InsertText: "format(\"$0\")",
},
{
Name: "moves",
Detail: "Inline Moves",
Kind: CommandPoryscriptKeyword,
CompletionKind: lsp.CIKFunction,
InsertText: "moves(\"$0\")",
},
{
Name: "var",
Detail: "Get the value of a variable",
Expand Down

0 comments on commit a702ec1

Please sign in to comment.