yoshizow / global-pygments-plugin

[DEPRECATED] Pygments Plug-in Parser for GNU GLOBAL
Other
66 stars 16 forks source link

tags are case insensitive. #7

Closed amosbird closed 7 years ago

amosbird commented 7 years ago

Is there a env flag that can be used to change the sensitivity behavior of tagging?

yoshizow commented 7 years ago

It depends on how your editor plugin call the global command.

global command itself has an option to change case sensitivity.

$ global -sx init
init               72 acceptance/cluster/testconfig.pb.go func init() {
init              669 acceptance/cluster/testconfig.pb.go func init() {
init               76 acceptance/util.go func init() {
init               25 base/main_test.go func init() {
init               48 build/info.pb.go func init() {
.....
$ global -sxi init
Init              620 ts/query.go       heap.Init(&ai)
Init               86 util/interval/range_group.go      r.ll.Init()
Init              205 util/interval/range_group.go      rg.ll.Init()
init               72 acceptance/cluster/testconfig.pb.go func init() {
init              669 acceptance/cluster/testconfig.pb.go func init() {
init               76 acceptance/util.go func init() {
.....
amosbird commented 7 years ago

thanks!