Fork me on GitHub
#emacs
<
2016-09-23
>
crocket00:09:43

Does anyone know how to bookmark emacs manual info page in emacs?

crocket02:09:43

I upgrade Emacs 24.5.1 to 25.1, and clipboard-yank doesn't yank from X11 clipboard anymore.

crocket02:09:47

Is it broken? Is it a regression?

gregnwosu08:09:45

@crocket you may have old binaries kicking around, perhaps consider reinstalling

borkdude08:09:20

How can I exclude directories from projectile-ag?

gregnwosu08:09:03

(add-to-list 'projectile-globally-ignored-directories “folder-to-ignore")
 

crocket09:09:43

@gregnwosu I have the following settings in ~/.emacs

'(select-enable-clipboard nil)
'(x-select-enable-clipboard-manager nil)

crocket09:09:18

In emacs 24.5.1, x-clipboard-yank used to work fine. In emacs 25.1, there is no x-clipboard-yank, and clipboard-yank doesn't work if select-enable-clipboard is nil.

gregnwosu09:09:03

@crocket , did it load correctly , any error messages in the message buffer on startup or from trying x-clipboard-yank

crocket09:09:24

x-clipboard-yank is absent in emacs 25.1

crocket09:09:08

There is no error in *Messages*, and it loaded correctly.

gregnwosu09:09:26

understood. perhaps you might like to try xclip. Ive seen that there is a package for it in emacs 25

crocket09:09:43

So, you're admitting that it's a bug?

crocket09:09:55

Or, do I misunderstand clipboard-yank?

gregnwosu09:09:10

well if there is no package as you say , there is no package to have a bug. but perhaps i misunderstand

crocket09:09:41

Perhaps, I should learn elisp and read the content of clipboard-yank.

crocket09:09:41

Oh, it seems x-clipboard-yank is available, but it's not available for auto-completion.

borkdude10:09:06

Is there a way to enable a post-commit hook in magit? Mine has a read-line in it, that might be problematic

borkdude15:09:39

What is the emacs package that highlights surrounding symbols the same as where point is at?

ag18:09:03

@borkdude I bet you can also use .agignore file to hide things from ag (program, not me)

borkdude20:09:01

@ag I read on ag’s website that it reads .gitignore. But how about multiple .gitignores in subdirectories? it looks like it doesn’t handle that

ag20:09:23

.agignore I think recursive you can add it to a directory at a higher level and it would ignore things down the directory structure.

borkdude20:09:34

our project is like this: - repo/.gitignore - repo/project1/.gitignore - repo/project2/.gitignore - repo/...