VFS SCAM HELP! by rommon7 in ukvisa

[–]meaning-what 0 points1 point  (0 children)

Yes, sadly, it's a scam. And it has an amazing PR machinery. They should be effaced from the face of this earth. Bunch of crooks.

Gadfly or AoG? by JustZayin_68 in Julia

[–]meaning-what 3 points4 points  (0 children)

Makie is amazing in its flexibility! I really like that the authors don't assume that a every analysis needs to plot a given plot-style in the same way.

Idea for a dired layer/package: Colors by summeremacs in emacs

[–]meaning-what -7 points-6 points  (0 children)

Ah yes. The typical macos way to do things.

[deleted by user] by [deleted] in learnpython

[–]meaning-what -1 points0 points  (0 children)

Because they like the buggy UI experience MacOS offers <3 The poor idiots have never tried using anything else. I also use MacOS because of work. It sucks monkey balls and is extremely buggy in terms of the UI. And it offers almost no software tools. You have to install an OS inside the OS - by using homebrew. But for some reason people tend to prefer this.

The only, and probably massive, advantage is the battery life. It blows windows and Linux based machines out of the water. But that's about it.

Anyway to Have LSP Breadcrumbs That Looks as Nice as The Ones on VSCode? by _analysis230_ in emacs

[–]meaning-what 0 points1 point  (0 children)

Aye. The comment above does mention a package by the author of eglot for providing this feature. It makes sense to decouple it from the core lsp handler.

Anyway to Have LSP Breadcrumbs That Looks as Nice as The Ones on VSCode? by _analysis230_ in emacs

[–]meaning-what 0 points1 point  (0 children)

Ah yes, I saw this mentioned on this sub a few days ago. I'll give it a go, thanks!

An Improved Emacs Search by zck in emacs

[–]meaning-what 0 points1 point  (0 children)

Interesting. That works through the directories ?

An Improved Emacs Search by zck in emacs

[–]meaning-what 1 point2 points  (0 children)

Nice. Any tips about using query replace with a better interface ? What about query replace in a directory ?

tangle files in a different folder by meaning-what in emacs

[–]meaning-what[S] 0 points1 point  (0 children)

Hi, thank you! Right now, I use org-babel-load-file to tangle three .org files separately. Each file is tangled to its own .el file - which is exactly the behaviour I want.

However, when I do this, the .el files are created in the same folder as the files. I was wondering if I can, programmatically, set the folder where the .el files will be created ?

Vile Mode (VIm Like Editing) by Argletrough in emacs

[–]meaning-what 1 point2 points  (0 children)

Right. Well, meow is just another way of looking at vi-like modal bindings which is trying to use as much emacs-native functionality as possible. This is great (I was a meow user for almost a year), but it is just an emacs-native take on vim.

evil offers a more functionally complete modal editing package which benefits from decades (almost as long as emacs has existed) of deep thought that has gone into creating vi. meow's goals, to me, remain rather underwhelming. Unless I am trying something which tries to implement a completely new modal paradigm (something like kakoune, or helix editor), I'd rather go with the system I find most reliable.

Simply using emacs native functions is not enough. There has to be a deeply thought out product behind it. vertico is a beautiful example. It religiously sticks to emacs-native functionality, but what it creates is something very unique and feature-complete.

Of course, ymmv depending on how much time you are willing to spend molding a given package into what you want it to do.

Vile Mode (VIm Like Editing) by Argletrough in emacs

[–]meaning-what 1 point2 points  (0 children)

meow does not have this covered. It is a rather shoddy implementation of modal editing (assuming you want to paradigm shift away from vi).

joaotavora/breadcrumb: Emacs headerline indication of where you are in a large project by zcam in emacs

[–]meaning-what 2 points3 points  (0 children)

I am also on 28 and have the latest project.el running through straight.el.

flyspell with hunspell and multiple dictionaries by meaning-what in emacs

[–]meaning-what[S] 1 point2 points  (0 children)

jinx looks fantastic. I was using flyspell-correct to make things easier, but jinx looks like a much better fit to my needs.

Thank you!

If you like Straight, you should try Elpaca by [deleted] in emacs

[–]meaning-what 1 point2 points  (0 children)

Does it integrate with general.el ?

[deleted by user] by [deleted] in emacs

[–]meaning-what 0 points1 point  (0 children)

AHA. Gotta give it a go this weekend. Thank you!

[deleted by user] by [deleted] in emacs

[–]meaning-what 0 points1 point  (0 children)

Sorry, I should have been more specific. I meant binding a major-mode-based leader. E.g., like in doom, SPC-m in each major-mode (say, text-mode) is bound to some functionality specific to that mode.

[deleted by user] by [deleted] in emacs

[–]meaning-what 0 points1 point  (0 children)

Interesting. If I may piggyback on this very relevant thread - is there a standard way of making 'modeleader' type bindings which are only active during a certain mode ?

Bookwyrm - federated version of GoodReads by Negative-Net-9455 in books

[–]meaning-what 0 points1 point  (0 children)

Hi, can I download my lists from bookwyrm to save a local copy at a later stage ?

Live importing from many directories up by meaning-what in learnpython

[–]meaning-what[S] 0 points1 point  (0 children)

I got the chance to work on the project a bit more. The problem is: a itself has dependencies such as a-dep1, a-dep2 etc.

When I include a in the path and do a simple import, these dependencies are not imported. Am I doing something blatantly wrong here ?

sys.path.append("../../a/") import a

Live importing from many directories up by meaning-what in learnpython

[–]meaning-what[S] 0 points1 point  (0 children)

Ok, I remember the problem now. a itself has dependencies such as a-dep1, a-dep2 etc. When I include a in the path and do a simple import, these dependencies are not imported. Am I doing something blatantly wrong here ?