From: Hongyi Zhao <hongyi.zhao@gmail.com>
To: Tassilo Horn <tsdh@gnu.org>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: Add/remove an element into/from a cons.
Date: Tue, 26 Oct 2021 14:22:33 +0800 [thread overview]
Message-ID: <CAGP6POLWtiWVnhbLAJ_TnirM93EsL+qXwxwzXwf-4e_baHpVdQ@mail.gmail.com> (raw)
In-Reply-To: <CAGP6POLFgD_xxN0+FAWdKkyPqWyfgL5BZhVxEwnX=atQGBPO2A@mail.gmail.com>
On Tue, Oct 26, 2021 at 2:17 PM Hongyi Zhao <hongyi.zhao@gmail.com> wrote:
>
> On Tue, Oct 26, 2021 at 2:09 PM Tassilo Horn <tsdh@gnu.org> wrote:
> >
> > Hongyi Zhao <hongyi.zhao@gmail.com> writes:
> >
> > >> > > How can I add/remove an element into/from a cons, taking the
> > >> > > following one as an example:
> > >> > >
> > >> > > ```emacs-lisp
> > >> > > (setq company-backends '((company-tabnine :separate company-capf
> > >> > > company-dabbrev company-keywords company-files company-ispell)))
> > >> > > ```
> > >> > >
> > >> > > How can I remove `company-ispell` from and re-add it into the
> > >> > > company-backends defined above?
> > >> >
> > >> > You can use `setf' with the place being the alist entry like this
> > >> > (company-backends replaced with th/test in my example):
> > >> >
> > >> > --8<---------------cut here---------------start------------->8---
> > >> > (setq th/test '(( company-tabnine :separate company-capf company-dabbrev
> > >> > company-keywords company-files company-ispell)))
> > >> >
> > >> > (let ((place (assoc 'company-tabnine th/test)))
> > >> > (setf place (remove 'company-ispell place)))
> > >> > --8<---------------cut here---------------end--------------->8---
> > >>
> > >> Yes. It does the trick:
> > >>
> > >> `C-j' (setq th/test '((company-tabnine :separate company-capf company-dabbrev
> > >> company-keywords company-ispell company-files)))
> > >>
> > >> ;; ((company-tabnine :separate company-capf company-dabbrev
> > >> company-keywords company-ispell company-files))
> > >>
> > >>
> > >> `C-j' (setq th/test (let ((place (assoc 'company-tabnine th/test)))
> > >> (setf place (remove 'company-ispell place))))
> > >>
> > >> ;; (company-tabnine :separate company-capf company-dabbrev
> > >> company-keywords company-files)
> > >>
> > >> But how to add it back to the alist?
> > >
> > > I mean: But how to add it back to its original position in the list?
> >
> > This would add it again as the last element:
> >
> > --8<---------------cut here---------------start------------->8---
> > (let ((place (assoc 'company-tabnine th/test)))
> > (setf place (append place '(company-ispell))))
> > --8<---------------cut here---------------end--------------->8---
>
> Thanks. But the push doesn't work:
>
> (let ((place (assoc 'company-tabnine th/test)))
> (setf place (push place '(company-ispell))))
I also tried out the following method:
`C-j'
(let ((place (assoc 'company-tabnine th/test)))
(setf place (push 'company-ispell place)))
=>
;; (company-ispell company-tabnine :separate company-capf
company-dabbrev company-keywords company-files company-ispell)
> Debugger entered--Lisp error: (wrong-number-of-arguments (lambda
> (command &optional arg &rest ignored) "`company-mode' completion
> backend using Ispell." (interactive (list 'interactive)) (cond ((eql
> command 'interactive) (company-begin-backend 'company-ispell)) ((eql
> command 'prefix) (if (company-ispell-available) (progn
> (company-grab-word)))) ((eql command 'candidates) (let ((words
> (company-ispell--lookup-words arg ...)) (completion-ignore-case t))
> (if (string= arg "") words (all-completions arg words)))) ((eql
> command 'kind) 'text) ((eql command 'sorted) t) ((eql command
> 'ignore-case) 'keep-prefix))) 0)
> company-ispell()
> (let* ((v (company-ispell))) (\(setf\ quote\) (cons place 'v) v))
> (setq place (let* ((v (company-ispell))) (\(setf\ quote\) (cons place 'v) v)))
> (let ((place (assoc 'company-tabnine th/test))) (setq place (let*
> ((v (company-ispell))) (\(setf\ quote\) (cons place 'v) v))))
> (progn (let ((place (assoc 'company-tabnine th/test))) (setq place
> (let* ((v (company-ispell))) (\(setf\ quote\) (cons place 'v) v)))))
> elisp--eval-last-sexp(nil)
> eval-last-sexp(nil)
> funcall-interactively(eval-last-sexp nil)
> command-execute(eval-last-sexp)
>
> HZ
--
Assoc. Prof. Hongyi Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
No. 473, Quannan West Street, Xindu District, Xingtai, Hebei province
prev parent reply other threads:[~2021-10-26 6:22 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-26 2:05 Add/remove an element into/from a cons Hongyi Zhao
2021-10-26 4:57 ` Tassilo Horn
2021-10-26 5:40 ` Hongyi Zhao
2021-10-26 5:42 ` Hongyi Zhao
2021-10-26 6:07 ` Hongyi Zhao
2021-10-26 6:18 ` Tassilo Horn
2021-10-26 6:30 ` Hongyi Zhao
2021-10-26 6:39 ` Hongyi Zhao
2021-10-26 6:08 ` Tassilo Horn
2021-10-26 6:17 ` Hongyi Zhao
2021-10-26 6:22 ` Tassilo Horn
2021-10-26 8:12 ` Hongyi Zhao
2021-10-26 8:15 ` Tassilo Horn
2021-10-26 9:26 ` Hongyi Zhao
2021-10-26 9:31 ` Hongyi Zhao
2021-10-26 18:56 ` Tassilo Horn
2021-10-27 1:39 ` Hongyi Zhao
2021-10-27 4:54 ` Hongyi Zhao
2021-10-27 5:13 ` Hongyi Zhao
2021-10-27 18:43 ` Tassilo Horn
2021-10-28 4:14 ` Hongyi Zhao
2021-10-28 4:36 ` Hongyi Zhao
2021-10-28 5:40 ` Hongyi Zhao
2021-10-26 12:36 ` Stefan Monnier
2021-10-26 13:41 ` Hongyi Zhao
2021-10-26 6:22 ` Hongyi Zhao [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAGP6POLWtiWVnhbLAJ_TnirM93EsL+qXwxwzXwf-4e_baHpVdQ@mail.gmail.com \
--to=hongyi.zhao@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=tsdh@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).