কুইকফিক্স তালিকা এবং অবস্থানের তালিকা সম্পর্কে ডকুমেন্টেশন থেকে নিম্নলিখিতটি রয়েছে। তবে আমি নিশ্চিত না আসলে কী আলাদা। নীচের চিত্রটি লোকেশন তালিকা এবং কুইকফিক্স তালিকা থেকে একই জিনিস দেখায়। আমি কখন ভিমগ্রিপ এবং লভিমগ্রেপতে এক বা অন্য ব্যবহার করব।
In Vim the quickfix commands are used more generally to find a list of positions
in files.For example, |:vimgrep| finds pattern matches. You can use the positions
in a script with the |getqflist()| function. Thus you can do a lot more than the
edit/compile/fix cycle!
...
...
*location-list* *E776*
A location list is similar to a quickfix list and contains a list of positions
in files. A location list is associated with a window and each window can have
a separate location list. A location list can be associated with only one window.
The location list is independent of the quickfix list.
...
হালনাগাদ
আমি এখান থেকে নিম্নলিখিত খুঁজে পেয়েছি ।
These commands all fill a list with the results of their search. "grep" and
"vimgrep" fill the "quickfix list", which can be opened with :cw or :copen,
and is a list shared between ALL windows. "lgrep" and "lvimgrep" fill the
"location list," which is local to the current window, and can be opened
with :lw or :lopen. Both of these lists can be used to instantly jump to
the matching line in whatever file it occurs in.
সুতরাং পার্থক্য হ'ল কুইকফিক্স তালিকার জন্য সমস্ত উইন্ডো এবং লোকেশন তালিকার স্থানীয় উইন্ডো। তবে আমি অন্য যে কোনও উইন্ডো থেকে অবস্থানের তালিকাটি খুলতে পারি। তাহলে কি পার্থক্য ??