Skip to content

Commit

Permalink
Merge pull request #29 from kzkn/fix-column
Browse files Browse the repository at this point in the history
Corrected the column number sent from Emacs to Server to 1 origin
  • Loading branch information
mopemope authored Feb 19, 2017
2 parents 4a6eed8 + 5e42f17 commit f49d823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meghanada.el
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The slash is expected at the end."

(defun meghanada--what-column ()
"TODO: FIX DOC ."
(number-to-string (current-column)))
(number-to-string (1+ (current-column))))

(defun meghanada--what-symbol ()
"TODO: FIX DOC ."
Expand Down

0 comments on commit f49d823

Please sign in to comment.