This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am zmack on github. | |
* I am zmack (https://keybase.io/zmack) on keybase. | |
* I have a public key whose fingerprint is AC46 AEDB 6BFE 3F87 8065 5A3A CEC1 A6BC 8709 DF7D | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function RacerGoToDefinition() | |
let current_line = line(".") | |
let current_column = col(".") | |
let current_file = expand("%") | |
let command = g:racer_cmd." find-definition ".current_line." ".current_column." ".current_file | |
let definition = system(command) | |
let matches = split(split(definition, "\n")[0], ",") | |
if split(matches[0], " ")[0] != "MATCH" |
OlderNewer