kostafey

Results 46 comments of kostafey

@aaronbieber, looks like `posn-at-point` problem. To verify this you can try `popup-el` version previous to [this commit](https://github.com/kenbeese/popup-el/commit/c02ec730101184481d90df143524c88801a5b015#diff-99b97c0478ea73bf04732050d7160dc4L539).

Another disadvantage of using `posn-at-point` is different column positions of menu items. It seems, early used `popup-current-physical-column` looks better for many reasons.

@robert-zaremba, Im my case you should create popup menu after ^L char in TAGS buffer. Probably, it may be any other buffer with special (non-text) characters.

**UPD:** Is seems, it's hard to reproduce it any time. I'll try to find permanent reproduction steps. The last case here. **UPD2:** full repro seps: - `emacs -Q` - Assume...

Hello! It's very new experimental possibility and not well-documented yet. Please, add `[clomacs "0.0.3-SNAPSHOT"]` to your `project.clj` `:dependencies`. Then terminate your REPL (if running) and try again.

Furthermore if you develop your own Elisp-Clojure Emacs extension, you should add library info to all related `clomacs-defun` wrapped functions. ```lisp (require 'clomacs) (clomacs-defun your-libname-set-emacs-connection clomacs/set-emacs-connection :lib-name "your-libname") (clomacs-defun your-libname-close-emacs-connection...

Yep. But beware, anytime you run `(your-libname-httpd-start)`, nREPL server will start too (of not yet) to be sent Emacs http server parameters (host & port) to Clojure side. If you...

Not yet. It can be added, but I can't promise to do it soon.

@PlumpMath any suggestions about API? What do you think about, e.g. `:backend` parameter ```lisp (clomacs-defun get-property System/getProperty :backend :cljs) ``` with a default value of `:clj`.