Projects can have multiple paths
This commit is contained in:
parent
bf0f492740
commit
d3c2d4e6bf
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ saveAs = (filePath) ->
|
||||||
|
|
||||||
getFullPath = (filePath) ->
|
getFullPath = (filePath) ->
|
||||||
return filePath if path.isAbsolute(filePath)
|
return filePath if path.isAbsolute(filePath)
|
||||||
return path.join(atom.project.getPath(), filePath)
|
return path.join(atom.project.getPaths()[0], filePath)
|
||||||
|
|
||||||
replaceGroups = (groups, replString) ->
|
replaceGroups = (groups, replString) ->
|
||||||
arr = replString.split('')
|
arr = replString.split('')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue