Code Monkey home page Code Monkey logo

Comments (5)

Matts966 avatar Matts966 commented on May 31, 2024 2

Thank you for you explanation! I was satisfied with {_, xs -> reverse(xs)}, solution!

Please feel free to leave this issue for tracking or close for other tickets.

from wilder.nvim.

Matts966 avatar Matts966 commented on May 31, 2024 2

For anyone who want to try reverse option, the configuration example is below.

call wilder#enable_cmdline_enter()
" only / and ? are enabled by default
set wildcharm=<Tab>
" For :cd ~/<C-n> to complete path
cmap <expr> <C-n> wilder#in_context() ? wilder#previous() : "\<C-n>"
cmap <expr> <C-p> wilder#in_context() ? wilder#next() : "\<C-p>"
call wilder#set_option('modes', [':'])
call wilder#set_option('renderer', wilder#popupmenu_renderer({
      \ 'highlighter': wilder#basic_highlighter(),
      \ 'reverse': v:true,
      \ }))
call wilder#set_option('pipeline', [
      \   wilder#branch(
      \     [
      \       wilder#check({_, x -> empty(x)}),
      \       wilder#history(),
      \     ],
      \     wilder#cmdline_pipeline(),
      \     wilder#search_pipeline(),
      \   ),
      \ ])

from wilder.nvim.

gelguy avatar gelguy commented on May 31, 2024 1

There's a hidden reverse option for wilder#popupmenu():

call wilder#set_option('renderer', wilder#popupmenu_renderer({
      \ 'reverse': 1,
      \ ... other options ...
      \ }))

It's hidden for now since I might change it in the future (having to handle reverse might restrict newer features in the future). If I find a good solution for it I will add it as a proper documented feature.

from wilder.nvim.

gelguy avatar gelguy commented on May 31, 2024

Thanks for using!

Do you mean that you wish to reverse the order of the candidates in wilder#history()? This can be done by adding:

call wilder#set_option('pipeline', [
      \   wilder#branch(
      \     [
      \       wilder#check({_, x -> empty(x)}),
      \       wilder#history(),
      \       {_, xs -> reverse(xs)},
      \     ],
      \     ... other pipelines ...
      \   ),
      \ ])

from wilder.nvim.

Matts966 avatar Matts966 commented on May 31, 2024

It's almost perfectly what I wanted! Very appreciated πŸ™‡

Could I scroll from bottom? The scroll bar starts from top by default in my environment.
γ‚Ήγ‚―γƒͺγƒΌγƒ³γ‚·γƒ§γƒƒγƒˆ 2021-07-06 2 48 13

from wilder.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.