requestmapper
requestmapper copied to clipboard
please support custom settings
Issue
Can you support setting the length of the search box ?
The text of the search box should be trimmed before matching.
Specifications
- Version of the plugin: 0.15
- IntelliJ IDEA version: 2019.2
@meidea could you explain more about your case? I can get the idea
@viartemev
Our request path is a bit long, so I want to customize the length of the search box.
eg: /api/v1/userplatform/activity/listByTagWithOutDetail
When I search for GET
, it should be the same as GET
;
GET
.trim() = GET
I use space delimiter for splitting method and path.
I can't get your idea about space :(
@viartemev Please input /super
, add a space at the end;
Oh, I believe @meidea means that you should trim whitespaces from start and end of search term before actually searching
@meidea I got it. Would you mind to make a PR for it? I can help you if you need.
@asm0dey Thank you !
@viartemev You are the best!
Seems like both problems (window size and that search will not work if whitespace on the end) are not on this project side (they came from idea)
I've tried to implement "ignore whitespace on the end" feature, but it didn't worked. Source code (as I know it's useless now) available in the branch https://github.com/ikopysov/requestmapper/tree/%23201