Skip to content

Instantly share code, notes, and snippets.

@pogin503
Created March 5, 2016 13:41
Show Gist options
  • Save pogin503/980f3188a84e4f2d66eb to your computer and use it in GitHub Desktop.
Save pogin503/980f3188a84e4f2d66eb to your computer and use it in GitHub Desktop.
(require 'f)
(defun current-line-number ()
(1+ (count-lines 1 (point))))
(defun my-current-line-info ()
(interactive)
(kill-new (format "%s L%d"
(f-filename (f-this-file))
(current-line-number))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment