Feat: Filtering Problem List using local files. #145
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey, just wanted to add this feature, which is basically able to filter the problem list using both text and JSON files.
For example:
list.json
# My LeetCode Study List two-sum 4sum|arrays,hash-table longest-palindromic-substring|dynamic-programming
list.txt
Basic Use:
With additional Filters
Proof that is works.
Screencast from 2024-11-20 22-10-27.webm
(copilot summary below)
New functionality for custom list filtering:
lua/leetcode/cache/problemlist.lua
: Addedparse_custom_list
function to parse custom list files andfilter_by_custom_list
function to filter problems based on the custom list. Also addedProblemlist.filter_by_file
method to integrate these functions.Command structure updates:
lua/leetcode/command/arguments.lua
: Addedarguments.list_custom
to define the structure for custom list command arguments, including file and filter options.lua/leetcode/command/init.lua
: Addedcmd.custom_list
function to handle the new custom list command and integrated it into the command list withcmd.commands.custom
. [1] [2]