CeleritasCelery activity https://gitlab.com/foconoco 2020-04-21T15:53:47Z tag:gitlab.com,2020-04-21:728149934 CeleritasCelery commented on issue #29 at Alex Branham / system-packages 2020-04-21T15:53:47Z foconoco CeleritasCelery

You can always just run Emacs as administrator. That will give all of its sub-processes admin privileges. There is no need to wait for runas before adding this.

tag:gitlab.com,2020-04-03:708477034 CeleritasCelery pushed to project branch master at CeleritasCelery / dotfiles 2020-04-03T23:21:53Z foconoco CeleritasCelery

CeleritasCelery (d0204fcb) at 03 Apr 23:21

Update dictionary

... and 2 more commits

tag:gitlab.com,2020-03-04:671464178 CeleritasCelery deleted project branch use-package-fix at CeleritasCelery / compdef 2020-03-04T05:55:02Z foconoco CeleritasCelery

CeleritasCelery (5b25f277) at 04 Mar 05:55

tag:gitlab.com,2020-03-02:669546273 CeleritasCelery pushed to project branch use-package-fix at CeleritasCelery / compdef 2020-03-02T19:58:43Z foconoco CeleritasCelery

CeleritasCelery (5b25f277) at 02 Mar 19:58

Fix issue with use-package keywords overriding one another

tag:gitlab.com,2020-03-02:669535057 CeleritasCelery pushed to project branch use-package-fix at CeleritasCelery / compdef 2020-03-02T19:46:52Z foconoco CeleritasCelery

CeleritasCelery (1c5ca3a4) at 02 Mar 19:46

Fix issue with use-package keywords overriding one another

... and 7 more commits

tag:gitlab.com,2020-03-02:669500881 CeleritasCelery commented on merge request !4 at Uros Perisic / compdef 2020-03-02T19:11:04Z foconoco CeleritasCelery

Okay so I took a look and we overwrote the fixes in !3 (merged) when we merged develop. This means that we no longer have the ability to override the hook with subsequent calls to compdef. I will rebase this MR off master and make sure to fix both !3 (merged) and !4 (merged). If we are using a lambda we will loose the ability to override the hooks.

tag:gitlab.com,2020-02-22:659172839 CeleritasCelery commented on merge request !4 at Uros Perisic / compdef 2020-02-22T03:04:33Z foconoco CeleritasCelery

Calling the function plain does not accept atoms for some reason.

I didn’t follow this. Can you rephrase it?

tag:gitlab.com,2020-02-19:656004947 CeleritasCelery pushed to project branch master at CeleritasCelery / dotfiles 2020-02-19T19:01:06Z foconoco CeleritasCelery

CeleritasCelery (118c4840) at 19 Feb 19:01

Add Nagelfar

... and 2 more commits

tag:gitlab.com,2020-02-07:642023629 CeleritasCelery pushed new project branch master at CeleritasCelery / dotfiles 2020-02-07T16:47:30Z foconoco CeleritasCelery

CeleritasCelery (9f68a4c2) at 07 Feb 16:47

Merge branch 'master' of sccj002253.sc.intel.com:~/custom/env_bare/...

... and 172 more commits

tag:gitlab.com,2020-02-07:642021434 CeleritasCelery created project CeleritasCelery / dotfiles 2020-02-07T16:45:29Z foconoco CeleritasCelery tag:gitlab.com,2020-01-03:606778359 CeleritasCelery commented on merge request !4 at Uros Perisic / compdef 2020-01-03T18:21:54Z foconoco CeleritasCelery

@jjzmajic have you had a chance to test this?

tag:gitlab.com,2019-12-16:594226266 CeleritasCelery commented on merge request !4 at Uros Perisic / compdef 2019-12-16T23:53:56Z foconoco CeleritasCelery

Every time you call compdef it redefines the hook function. Here is a simple way to test.

(use-package python
  :compdef python-mode
  :capf capf
  :company company)

Run that then open a new python file. You will observe that either company-backends or completion-at-point-functions will be wrong.

tag:gitlab.com,2019-12-13:591694126 CeleritasCelery commented on merge request !4 at Uros Perisic / compdef 2019-12-13T13:44:07Z foconoco CeleritasCelery

@jjzmajic

tag:gitlab.com,2019-12-13:591693362 CeleritasCelery opened merge request !4: Fix issue with use-package keywords overriding one another at Uros Perisic / compdef 2019-12-13T13:43:27Z foconoco CeleritasCelery

Currently if you define both a :capf and :company argument for use-package it will call compdef twice, once with each argument. That means that the latter keyword will override the first and you will only get one of the settings instead of both. Since compdef has no required use-package keyword, it is harder to fix it on that side then to just create two seperate functions. One for capf and one for company.

tag:gitlab.com,2019-12-13:591690307 CeleritasCelery pushed to project branch use-package-fix at CeleritasCelery / compdef 2019-12-13T13:40:45Z foconoco CeleritasCelery

CeleritasCelery (381c2580) at 13 Dec 13:40

Fix issue with use-package keywords overriding one another

tag:gitlab.com,2019-12-13:591676507 CeleritasCelery pushed new project branch use-package-fix at CeleritasCelery / compdef 2019-12-13T13:29:10Z foconoco CeleritasCelery

CeleritasCelery (c9a8ca4c) at 13 Dec 13:29

Fix issue with use-package keywords overriding one another

... and 5 more commits

tag:gitlab.com,2019-12-11:588429724 CeleritasCelery deleted project branch hook-fix at CeleritasCelery / compdef 2019-12-11T02:49:52Z foconoco CeleritasCelery

CeleritasCelery (a28fb972) at 11 Dec 02:49

tag:gitlab.com,2019-11-20:568445427 CeleritasCelery commented on merge request !3 at Uros Perisic / compdef 2019-11-20T16:10:46Z foconoco CeleritasCelery

@jjzmajic

ping

tag:gitlab.com,2019-10-28:546585279 CeleritasCelery opened merge request !3: Fix use-package normalize and overriding hooks at Uros Perisic / compdef 2019-10-28T17:20:51Z foconoco CeleritasCelery

This MR fixes two issues

  1. Company-mode allows grouping backends by including them in a sublist. However use-package-normalize-symlist does not handle sublists. By using the recursive version of the normalize function we can correctly handle company mode grouping.

  2. Currently if a compdef hook is updated it will not be able to override the settings of the older version of the function because it is a lambda and later in the hook. By changing it to a named symbol we are able to override it by redefining it.

tag:gitlab.com,2019-10-28:546580093 CeleritasCelery pushed new project branch hook-fix at CeleritasCelery / compdef 2019-10-28T17:15:24Z foconoco CeleritasCelery

CeleritasCelery (a28fb972) at 28 Oct 17:15

Allow compdef hooks to be overridden by subsequent calls

... and 1 more commit