summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Dale Aromin <evan@avendael.com>2014-09-27 23:10:17 +0800
committerEdward Tjörnhammar <ed@cflags.cc>2014-09-27 17:48:40 +0200
commit8c726e0beda92f9b311cdce5eb63e0ae2367ab69 (patch)
tree71e9cd5b24de8e67eae2ea9987e4c60981ec0084
parent65facea0e9a48fa1e21c4b51790f0ce4448dff7b (diff)
Fix flycheck warnings.
-rw-r--r--evil-org.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/evil-org.el b/evil-org.el
index 9180645..f5d1a14 100644
--- a/evil-org.el
+++ b/evil-org.el
@@ -24,9 +24,12 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;;; Commentary:
+;;
;; Known Bugs:
;; See, https://github.com/edwtjo/evil-org-mode/issues
-
+;;
+;;; Code:
(require 'evil)
(require 'org)
@@ -40,14 +43,15 @@
(add-hook 'org-mode-hook 'evil-org-mode) ;; only load with org-mode
(defun clever-insert-item ()
- "Clever insertion of org item"
+ "Clever insertion of org item."
(if (not (org-in-item-p))
(insert "\n")
(org-insert-item))
)
(defun evil-org-eol-call (fun)
- "Go to end of line and call provided function"
+ "Go to end of line and call provided function.
+FUN function callback"
(end-of-line)
(funcall fun)
(evil-append nil)