Giter Site home page Giter Site logo

Comments (2)

manateelazycat avatar manateelazycat commented on September 21, 2024

I don't use org-mode, you can add some check condtion in function lsp-bridge-monitor-after-change to avoid lsp-bridge start in org-babel-tangle

from lsp-bridge.

rezaamashi avatar rezaamashi commented on September 21, 2024

Hello, I haven't checked back on this issue for quite a while now. I had a different approach to resolving this issue. I haven't checked on lsp-bridge-monitor-after-change, but I decided to have a shell script that will run a minimal emacs instance specifically for tangling the code.

I have short script called org-tangle-file

  #!/usr/bin/env bash

  set -e
  emacs --batch -l org --eval "(org-babel-tangle-file \"$1\")"

Then I write a callable in emacs that will run that script within emacs

(defun tangle-config-org ()
  "Callable that runs `org-tangle-file' script"
  (interactive)
  (shell-command (concat "org-tangle-file "
                         (expand-file-name "config.org" doom-user-dir))))

Finally, I have a local variable set up at EOF of my config.org that will add tangle-config-org into after-save-hook.

* Local Variable

# Local Variables:
# eval: (add-to-list 'after-save-hook 'tangle-config-org)
# End:

That way every time I save my config.org there will be a lean and minimal instance of emacs running just to tangle the file. I believe this is a more better approach, as it is more modular and the amount of package that I have installed on my setup won't affect the tangling process. For I find, through my experience, if it was not lsp-bridge there are some other package that will intrude into the tangling operation.

Although, still at the same spirit, having packages needlessly intruding into operation where it is not supposed to be would be ideal.
Cheers,

PS. As in my case it is somewhat solved, even with different approach from the proposed one. I am willing to have this issue closed by @manateelazycat. But if someone else have a different and more suitable, package level, approach. I believe it is also swell to have the discussion going.

from lsp-bridge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.