[logaling-commit] logaling/logalimacs [master] write README

Back to archive index

null+****@clear***** null+****@clear*****
Tue Jan 3 15:21:46 JST 2012


yuta yamada	2012-01-03 15:21:46 +0900 (Tue, 03 Jan 2012)

  New Revision: 27342a0e3aa8f9728923f6f5970c674885b739fa

  Log:
    write README

  Modified files:
    README

  Modified: README (+35 -0)
===================================================================
--- README    2012-01-03 14:32:26 +0900 (e69de29)
+++ README    2012-01-03 15:21:46 +0900 (324bc28)
@@ -0,0 +1,35 @@
+* Describe
+  logalimacs is front-end program  of lagaling-command for Ruby gem.
+ 
+* Usage
+1. Put logalimacs where to pass load-path
+2. Sets as below to your .emacs for setting
+
+;;Example
+(when (require 'logalimacs nil t)
+  (global-set-key (kbd "M-g M-i") 'loga-interactive-command)
+  (global-set-key (kbd "M-g M-l") 'loga-lookup-in-hand-or-region)
+  (global-set-key (kbd "M-g M-a") 'loga-add-word)
+  )
+
+;or (use only interactive-command)
+(autoload 'loga-interactive-command "logalimacs"
+  "front-end for logaling-command")
+(global-set-key (kbd "M-g M-i") 'loga-interactive-command)
+
+* convenient configuration for popwin.el (requirement popwin.el)
+;; see also http://www.emacswiki.org/emacs/PopWin
+
+(require 'popwin)
+(setq display-buffer-function 'popwin:display-buffer)
+(setq popwin:special-display-config
+      (append '(
+                ("*logalimacs*" :position bottom :height 10 :noselect t :stick t)
+                ;;if need to other configuration, add for like below:
+                ;("*Backtrace*")
+                )
+              popwin:special-display-config))
+
+(setq popwin:popup-window-height 15   ;default 15. if left or right, ignored
+      popwin:popup-window-width 30    ;default 30. if top or bottom, ignored
+      )




More information about the logaling-commit mailing list
Back to archive index