This file contains hidden or 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
| # Redmine Plugin: Add Link To Overall Activities. | |
| # | |
| # License: | |
| # The MIT License (MIT) Copyright (c) 2012 suer | |
| # | |
| # Permission is hereby granted, free of charge, to | |
| # any person obtaining a copy of this software and | |
| # associated documentation files (the "Software"), | |
| # to deal in the Software without restricti on, | |
| # including without limitation the rights to use, |
This file contains hidden or 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
| /* | |
| Copyright 2011 Martin Hawksey | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
This file contains hidden or 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
| (defun anything-c-sources-git-project-for (pwd) | |
| (loop for elt in | |
| '(("Modified files (%s)" . "--modified") | |
| ("Untracked files (%s)" . "--others --exclude-standard") | |
| ("All controlled files in this project (%s)" . "")) | |
| collect | |
| `((name . ,(format (car elt) pwd)) | |
| (init . (lambda () | |
| (unless (and ,(string= (cdr elt) "") ;update candidate buffer every time except for that of all project files | |
| (anything-candidate-buffer)) |
NewerOlder