language_server-protocol 3.17.0.1 → 3.17.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d0ef69a63029bb6549f0f443e2846b9f87c73f2be7bc6f77f55c1f3819c7a91
|
4
|
+
data.tar.gz: 8e37d30d98a0eeebe04e64facf0f8ec0279682493a24da9a6640e465c56db30e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fa49ebff9f6bb27a37505a95bd1b93eb9d4bc019fc30fbe343fb4662f3fbde870cbf78a1853e4e4ca604d9bd0860508978a0ee575c0d810da8047e77573671a
|
7
|
+
data.tar.gz: 7b3da282738febb911ab3f2f9a8d31e4ae4e4fc9249a80c1b702cd0aff75d67a047ed0963bfdcb9f91135e7ea650b1765a231c29c328bfb937a3e307a0a4e97d
|
@@ -23,17 +23,18 @@ module LanguageServer
|
|
23
23
|
end
|
24
24
|
|
25
25
|
#
|
26
|
-
#
|
26
|
+
# The additional characters, beyond the defaults provided by the client (typically
|
27
|
+
# [a-zA-Z]), that should automatically trigger a completion request. For example
|
28
|
+
# `.` in JavaScript represents the beginning of an object property or method and is
|
29
|
+
# thus a good candidate for triggering a completion request.
|
30
|
+
#
|
31
|
+
# Most tools trigger a completion request automatically without explicitly
|
27
32
|
# requesting it using a keyboard shortcut (e.g. Ctrl+Space). Typically they
|
28
33
|
# do so when the user starts to type an identifier. For example if the user
|
29
34
|
# types `c` in a JavaScript file code complete will automatically pop up
|
30
35
|
# present `console` besides others as a completion item. Characters that
|
31
36
|
# make up identifiers don't need to be listed here.
|
32
37
|
#
|
33
|
-
# If code complete should automatically be trigger on characters not being
|
34
|
-
# valid inside an identifier (for example `.` in JavaScript) list them in
|
35
|
-
# `triggerCharacters`.
|
36
|
-
#
|
37
38
|
# @return [string[]]
|
38
39
|
def trigger_characters
|
39
40
|
attributes.fetch(:triggerCharacters)
|
@@ -30,17 +30,18 @@ module LanguageServer
|
|
30
30
|
end
|
31
31
|
|
32
32
|
#
|
33
|
-
#
|
33
|
+
# The additional characters, beyond the defaults provided by the client (typically
|
34
|
+
# [a-zA-Z]), that should automatically trigger a completion request. For example
|
35
|
+
# `.` in JavaScript represents the beginning of an object property or method and is
|
36
|
+
# thus a good candidate for triggering a completion request.
|
37
|
+
#
|
38
|
+
# Most tools trigger a completion request automatically without explicitly
|
34
39
|
# requesting it using a keyboard shortcut (e.g. Ctrl+Space). Typically they
|
35
40
|
# do so when the user starts to type an identifier. For example if the user
|
36
41
|
# types `c` in a JavaScript file code complete will automatically pop up
|
37
42
|
# present `console` besides others as a completion item. Characters that
|
38
43
|
# make up identifiers don't need to be listed here.
|
39
44
|
#
|
40
|
-
# If code complete should automatically be trigger on characters not being
|
41
|
-
# valid inside an identifier (for example `.` in JavaScript) list them in
|
42
|
-
# `triggerCharacters`.
|
43
|
-
#
|
44
45
|
# @return [string[]]
|
45
46
|
def trigger_characters
|
46
47
|
attributes.fetch(:triggerCharacters)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: language_server-protocol
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.17.0.
|
4
|
+
version: 3.17.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fumiaki MATSUSHIMA
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -479,7 +479,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
479
479
|
- !ruby/object:Gem::Version
|
480
480
|
version: '0'
|
481
481
|
requirements: []
|
482
|
-
rubygems_version: 3.3.
|
482
|
+
rubygems_version: 3.3.26
|
483
483
|
signing_key:
|
484
484
|
specification_version: 4
|
485
485
|
summary: A Language Server Protocol SDK
|