-
Notifications
You must be signed in to change notification settings - Fork 111
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
Removal of s.el as a dependency #372
Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
da35e4b
Replaced s-join with string-join
dotemacs 7a06913
Replaced s-trim with string-trim
dotemacs 38d081a
Replaced s-blank? with string-blank-p
dotemacs 4b47d41
Replaced s-concat with concat
dotemacs 46f2a2f
Replace s-starts-with-p with string-prefix-p
dotemacs 5c116f5
Replace s-(suf|pre)fix-p with string-(suf|pre)fix-p
dotemacs 43e229d
Replaces s-equals-p with string-equal
dotemacs a380f8e
Replaced s-ends-with-p with string-suffix-p
dotemacs 435615e
Replaced s-replace
dotemacs 11c1d78
Replaced s-matches-p
dotemacs 5ca4263
cljr--project-dir returns blank string instead of nil
dotemacs 6d0eaa3
Remove s-chop-(pre|suf)fix with string-remove-(pre|suf)fix
dotemacs 84892b0
Removed s-(pre|ap)pend
dotemacs 209bd74
Switch to downcase from s-downcase
dotemacs a7a983a
Remove s-present?
dotemacs 5a3b3cc
Replaced s-split with split-string
dotemacs d3d3223
Replaced s-contains-p
dotemacs cb32710
Replace s-match
dotemacs df7c4f1
Replace s-dashed-words
dotemacs 3504f9e
Replaced s-with
dotemacs e0c0ac6
Replace s-slice-at
dotemacs 315d517
Less parens
dotemacs c1efb08
Remove s-lines
dotemacs 4a10aea
Removed s.el as a dependency
dotemacs e812312
Created cljr--string-present-p
dotemacs 1641730
Reused cljr--string-present-p
dotemacs 80d7fd4
Cleaning up the intent
dotemacs 01cf772
Fix for the omission with split-string
dotemacs e04912f
Made cljr--whitespacep null safe
dotemacs c02c15f
Let diet
dotemacs c33fc5f
Avoiding repetition
dotemacs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps rather
(or project-dir "")
?or in fact you can get rid of the
let
you introduced and just stick an empty string at the end of the originalor
expression as default?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point.
Changed it as per your comment.
I was more on the 'drive' to complete the whole task, so I've missed the obvious stuff like this. Thanks