File tree Expand file tree Collapse file tree 12 files changed +21
-21
lines changed
Expand file tree Collapse file tree 12 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 11** Please check if the PR fulfills these requirements**
22
3- - [ ] The PR has no duplicates (please search among the [ Pull Requests] ( https://github.com/bcmi-labs /arduino-language-server/pulls )
3+ - [ ] The PR has no duplicates (please search among the [ Pull Requests] ( https://github.com/arduino /arduino-language-server/pulls )
44 before creating one)
5- - [ ] The PR follows [ our contributing guidelines] ( https://github.com/bcmi-labs /arduino-language-server#pull-requests )
5+ - [ ] The PR follows [ our contributing guidelines] ( https://github.com/arduino /arduino-language-server#pull-requests )
66- [ ] Tests for the changes have been added (for bug fixes / features)
77
88* ** What kind of change does this PR introduce?**
Original file line number Diff line number Diff line change 1- # same as https://github.com/bcmi-labs /arduino-editor/blob/master/Dockerfile
1+ # same as https://github.com/arduino /arduino-editor/blob/master/Dockerfile
22FROM gitpod/workspace-full
33
44USER root
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ echo go build -o /workspace/arduino-editor/arduino-ide-extension/build/arduino-l
55chmod +x /workspace/arduino-language-server/build.sh
66
77cd /workspace
8- git clone https://github.com/bcmi-labs /arduino-editor
8+ git clone https://github.com/arduino /arduino-editor
99cd arduino-editor
1010yarn
1111
Original file line number Diff line number Diff line change 1- module github.com/bcmi-labs /arduino-language-server
1+ module github.com/arduino /arduino-language-server
22
33go 1.12
44
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import (
1010
1111 "github.com/arduino/arduino-cli/arduino/libraries"
1212 "github.com/arduino/arduino-cli/executils"
13+ "github.com/arduino/arduino-language-server/lsp"
14+ "github.com/arduino/arduino-language-server/streams"
1315 "github.com/arduino/go-paths-helper"
14- "github.com/bcmi-labs/arduino-language-server/lsp"
15- "github.com/bcmi-labs/arduino-language-server/streams"
1616 "github.com/pkg/errors"
1717)
1818
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ import (
1818
1919 "github.com/arduino/arduino-cli/arduino/builder"
2020 "github.com/arduino/arduino-cli/executils"
21+ "github.com/arduino/arduino-language-server/handler/sourcemapper"
22+ "github.com/arduino/arduino-language-server/handler/textutils"
23+ "github.com/arduino/arduino-language-server/lsp"
24+ "github.com/arduino/arduino-language-server/streams"
2125 "github.com/arduino/go-paths-helper"
22- "github.com/bcmi-labs/arduino-language-server/handler/sourcemapper"
23- "github.com/bcmi-labs/arduino-language-server/handler/textutils"
24- "github.com/bcmi-labs/arduino-language-server/lsp"
25- "github.com/bcmi-labs/arduino-language-server/streams"
2626 "github.com/fatih/color"
2727 "github.com/pkg/errors"
2828 "github.com/sourcegraph/jsonrpc2"
Original file line number Diff line number Diff line change 55 "log"
66 "sync"
77
8- "github.com/bcmi-labs /arduino-language-server/lsp"
9- "github.com/bcmi-labs /arduino-language-server/streams"
8+ "github.com/arduino /arduino-language-server/lsp"
9+ "github.com/arduino /arduino-language-server/streams"
1010 "github.com/sourcegraph/jsonrpc2"
1111)
1212
Original file line number Diff line number Diff line change 99 "strconv"
1010 "strings"
1111
12+ "github.com/arduino/arduino-language-server/handler/textutils"
13+ "github.com/arduino/arduino-language-server/lsp"
1214 "github.com/arduino/go-paths-helper"
13- "github.com/bcmi-labs/arduino-language-server/handler/textutils"
14- "github.com/bcmi-labs/arduino-language-server/lsp"
1515 "github.com/pkg/errors"
1616)
1717
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package textutils
33import (
44 "fmt"
55
6- "github.com/bcmi-labs /arduino-language-server/lsp"
6+ "github.com/arduino /arduino-language-server/lsp"
77)
88
99// ApplyLSPTextDocumentContentChangeEvent applies the LSP change in the given text
Original file line number Diff line number Diff line change 44 "strings"
55 "testing"
66
7- "github.com/bcmi-labs /arduino-language-server/lsp"
7+ "github.com/arduino /arduino-language-server/lsp"
88)
99
1010func TestApplyTextChange (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments