-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display filename instead of summaries #81
Comments
Good idea, I'll try to give it some time this weekend. |
I got it working quite easily pad.py:L123 becomes: if vim.eval("g:pad#title_first_line") == '1':
source = source.readline().split("\n")
elif nchars > 0:
source = source.read(nchars).split('\n')
else:
source = [basename(source.name)] |
Ah, I wanted something fancier, and was fidgeting about the design :p If you want to open a PR, feel free. I'm not having as much free time to El vie., 20 de nov. de 2015 a la(s) 6:53 a. m., Alex Popescu <
|
add option to display file names in notes list #81
This is a feature request to provide either a configuration option or to use
let g:pad#read_nchars_from_files=0
to display the filename instead of the summary. (I use a system where the file name represents the query I'm usually looking for and the body of the note only the answer).The text was updated successfully, but these errors were encountered: